* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    background: #000;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Лёгкий декоративный фон */
.page-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 35%),
        radial-gradient(circle at bottom center, rgba(255, 255, 255, 0.04), transparent 30%),
        #000;
    z-index: -1;
}

.top-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 15px 10px;
}

.header-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.10),
        0 20px 60px rgba(0, 0, 0, 0.65);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    filter: brightness(0.98) contrast(1.05);
}

.header-image:hover {
    transform: scale(1.01);
    box-shadow:
        0 0 45px rgba(255, 255, 255, 0.15),
        0 25px 70px rgba(0, 0, 0, 0.75);
    filter: brightness(1.03) contrast(1.08);
}

.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 25px 15px 40px;
}

.buttons-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column; /* На ПК друг под другом */
    gap: 24px;
}

.image-button {
    position: relative;
    display: block;
    width: 100%;
    min-height: 220px; /* Кнопки крупнее */
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.image-button img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.image-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.45)),
        linear-gradient(to right, rgba(255, 255, 255, 0.03), transparent);
    z-index: 1;
}

.image-button span {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.75);
}

.image-button:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.65),
        0 0 28px rgba(255, 255, 255, 0.10);
}

.image-button:hover img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

/* Планшеты */
@media (max-width: 992px) {
    .header-image {
        border-radius: 22px;
    }

    .buttons-list {
        max-width: 760px;
        gap: 20px;
    }

    .image-button {
        min-height: 200px;
        border-radius: 22px;
    }

    .image-button img {
        height: 200px;
    }

    .image-button span {
        font-size: 24px;
        left: 20px;
        bottom: 18px;
    }
}

/* Мобильные */
@media (max-width: 600px) {
    .top-header {
        padding: 12px 10px 8px;
    }

    .header-image {
        border-radius: 18px;
    }

    .main-content {
        padding: 18px 10px 30px;
    }

    .buttons-list {
        gap: 16px;
    }

    .image-button {
        min-height: 170px;
        border-radius: 18px;
    }

    .image-button img {
        height: 170px;
    }

    .image-button span {
        font-size: 20px;
        left: 16px;
        bottom: 14px;
    }
}


/* =========================
   ABOUT PAGE
   ========================= */

.about-page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 15px 50px;
}

.about-box {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.60),
        0 0 24px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-avatar-wrap {
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-avatar {
    width: 240px;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 28px rgba(255, 255, 255, 0.10),
        0 14px 35px rgba(0, 0, 0, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    filter: brightness(1.02) contrast(1.05);
}

.about-avatar:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.14),
        0 18px 40px rgba(0, 0, 0, 0.65);
}

.about-content {
    flex: 1;
}

.about-title {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.60);
}

.about-text {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Планшеты */
@media (max-width: 992px) {
    .about-box {
        max-width: 760px;
        gap: 24px;
        padding: 26px;
        border-radius: 24px;
    }

    .about-avatar-wrap {
        flex: 0 0 200px;
    }

    .about-avatar {
        width: 200px;
        height: 200px;
    }

    .about-title {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .about-text {
        font-size: 17px;
        line-height: 1.65;
    }
}

/* Мобильные */
@media (max-width: 700px) {
    .about-page {
        padding: 18px 10px 30px;
    }

    .about-box {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 20px 16px;
        border-radius: 20px;
    }

    .about-avatar-wrap {
        flex: unset;
    }

    .about-avatar {
        width: 150px;
        height: 150px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 14px;
    }
}


/* =========================
   RECRUITING PAGE
   ========================= */

.recruiting-page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 15px 50px;
}

.recruiting-box {
    width: 100%;
    max-width: 920px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(25, 18, 10, 0.96), rgba(12, 12, 12, 0.96));
    border: 1px solid rgba(255, 200, 120, 0.18);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.62),
        0 0 26px rgba(255, 180, 90, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.recruiting-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 190, 110, 0.10), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 25%);
    pointer-events: none;
}

.recruiting-avatar-wrap {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.recruiting-avatar {
    width: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 3px solid rgba(255, 196, 112, 0.30);
    box-shadow:
        0 0 32px rgba(255, 196, 112, 0.12),
        0 16px 40px rgba(0, 0, 0, 0.58);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    filter: contrast(1.05) brightness(1.02);
}

.recruiting-avatar:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 42px rgba(255, 196, 112, 0.18),
        0 20px 44px rgba(0, 0, 0, 0.68);
}

.recruiting-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.wanted-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 180, 90, 0.10);
    border: 1px solid rgba(255, 180, 90, 0.20);
    color: #f1c27a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.recruiting-title {
    margin-bottom: 12px;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 900;
    color: #f7d7a1;
    text-transform: uppercase;
    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.60),
        0 0 12px rgba(255, 190, 110, 0.10);
}

.recruiting-price {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.recruiting-text {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 245, 230, 0.88);
}

.recruiting-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.recruiting-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 200, 120, 0.10);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.20);
}

.recruiting-item-title {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 800;
    color: #f3c987;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.recruiting-item-text {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 248, 238, 0.85);
}

.recruiting-note {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255, 190, 110, 0.08);
    border: 1px solid rgba(255, 190, 110, 0.14);
    color: #f6d29a;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

/* Планшеты */
@media (max-width: 992px) {
    .recruiting-box {
        max-width: 780px;
        gap: 24px;
        padding: 28px;
        border-radius: 24px;
    }

    .recruiting-avatar-wrap {
        flex: 0 0 210px;
    }

    .recruiting-avatar {
        width: 210px;
        height: 210px;
    }

    .recruiting-title {
        font-size: 36px;
    }

    .recruiting-price {
        font-size: 26px;
    }

    .recruiting-text {
        font-size: 17px;
        line-height: 1.65;
    }

    .recruiting-item-title,
    .recruiting-item-text,
    .recruiting-note {
        font-size: 15px;
    }
}

/* Мобильные */
@media (max-width: 700px) {
    .recruiting-page {
        padding: 18px 10px 30px;
    }

    .recruiting-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 16px;
        border-radius: 20px;
    }

    .recruiting-avatar-wrap {
        flex: unset;
    }

    .recruiting-avatar {
        width: 160px;
        height: 160px;
    }

    .wanted-label {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .recruiting-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .recruiting-price {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .recruiting-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .recruiting-list {
        gap: 12px;
        margin-bottom: 18px;
    }

    .recruiting-item {
        padding: 12px 14px;
        border-radius: 16px;
        text-align: left;
    }

    .recruiting-item-title,
    .recruiting-item-text,
    .recruiting-note {
        font-size: 15px;
    }
}


/* =========================
   SIDE ELEMENTS (PC ONLY)
   ========================= */

/* Левый блок новостей */
.news-block {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 290px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(255, 180, 80, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 15;
    overflow: hidden;
}

.news-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 180, 80, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.03), transparent 25%);
    pointer-events: none;
}

.news-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.news-badge {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 180, 90, 0.10);
    border: 1px solid rgba(255, 190, 110, 0.18);
    color: #f1c27a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 18px rgba(255, 180, 90, 0.08);
}

.news-title-wrap {
    min-width: 0;
}

.news-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.news-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.news-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-item {
    display: block;
    text-decoration: none;
    padding: 14px 14px 13px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 190, 110, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 8px 18px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 190, 110, 0.05);
    border-color: rgba(255, 190, 110, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(255, 180, 90, 0.06);
}

.news-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #f4d29e;
    line-height: 1.3;
    margin-bottom: 4px;
}

.news-item-text {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

/* Правые круглые кнопки */
.side-buttons {
    position: fixed;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 15;
}

.circle-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: #f3c987;
    background:
        linear-gradient(180deg, rgba(22, 22, 22, 0.95), rgba(8, 8, 8, 0.95));
    border: 1px solid rgba(255, 190, 110, 0.20);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(255, 180, 90, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.circle-btn:hover {
    transform: translateY(-3px) scale(1.04);
    color: #fff3dc;
    border-color: rgba(255, 205, 130, 0.34);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.52),
        0 0 24px rgba(255, 180, 90, 0.14);
}

/* Скрыть на планшетах и мобилках */
@media (max-width: 1100px) {
    .news-block,
    .side-buttons {
        display: none;
    }
}