/* style.css - Финальная версия */

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

/* Импорт МАКСИМАЛЬНО ЖИРНЫХ шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@900&display=swap');

body {
    background-color: #000000;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

html::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ========== ANIMALS / ЧЕРНЫЙ ФОН С ЦЕНТРАЛЬНЫМИ ПЛАТИНОВЫМИ УЗОРАМИ ========== */

.diamond-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000000 !important;
}

/* Чистая черная база */
.diamond-bg__base {
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 1;
}

/* Старые узорные слои отключаем */
.diamond-bg__platinum--1,
.diamond-bg__platinum--2,
.diamond-bg__gloss,
.diamond-bg__spark {
    display: none !important;
}

/* Затемняем бока под пантер, чтобы звезды были только в центре */
.diamond-bg__depth {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,1) 18%,
            rgba(0,0,0,0.98) 26%,
            rgba(0,0,0,0.72) 36%,
            rgba(0,0,0,0.18) 44%,
            rgba(0,0,0,0.00) 50%,
            rgba(0,0,0,0.18) 56%,
            rgba(0,0,0,0.72) 64%,
            rgba(0,0,0,0.98) 74%,
            rgba(0,0,0,1) 82%,
            rgba(0,0,0,1) 100%);
}

/* Контейнер звезд только по центру */
.diamond-bg__facets {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(34vw, 560px);
    transform: translateX(-50%);
    pointer-events: none;
    overflow: hidden;
    opacity: 1;
    background: transparent !important;
    mix-blend-mode: normal;
}

/* =========================
   STARS
========================= */

.bg-star {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    background: rgba(255,255,255,0.98);
    transform: scale(0.7);
    filter: blur(0.35px);
    box-shadow:
        0 0 4px rgba(255,255,255,0.95),
        0 0 10px rgba(220,228,236,0.50),
        0 0 18px rgba(220,228,236,0.16);
    will-change: transform, opacity;
}

/* Более яркие редкие звездочки */
.bg-star.big {
    filter: blur(0.5px);
    box-shadow:
        0 0 5px rgba(255,255,255,1),
        0 0 12px rgba(220,228,236,0.62),
        0 0 22px rgba(220,228,236,0.22);
}

/* Красивая звездочка-крестик, очень тонкая */
.bg-star.cross::before,
.bg-star.cross::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(255,255,255,0.45);
    box-shadow: 0 0 8px rgba(255,255,255,0.16);
}

.bg-star.cross::before {
    width: 1px;
    height: calc(100% + 5px);
}

.bg-star.cross::after {
    width: calc(100% + 5px);
    height: 1px;
}

@keyframes bgStarFloat {
    0% {
        opacity: 0;
        transform: translate3d(0, 10px, 0) scale(0.65);
    }

    12% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    38% {
        opacity: 0.58;
        transform: translate3d(var(--driftX1), var(--driftY1), 0) scale(1.08);
    }

    64% {
        opacity: 0.84;
        transform: translate3d(var(--driftX2), var(--driftY2), 0) scale(0.92);
    }

    100% {
        opacity: 0;
        transform: translate3d(var(--driftX3), var(--driftY3), 0) scale(0.42);
    }
}

/* Контент выше фона */
.site-wrapper {
    position: relative;
    z-index: 2;
}

.auth-page::before,
.auth-page::after,
.auth-hero-glow {
    display: none !important;
}

/* ========== ОСНОВНОЙ КОНТЕЙНЕР ========== */
.site-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========== ШАПКА ========== */
/* ========== ШАПКА / DIAMOND-PLATINUM ========== */

.header {
    width: 100%;
    position: relative;
    z-index: 30;
    background:
        linear-gradient(
            180deg,
            rgba(18, 20, 24, 0.78) 0%,
            rgba(10, 11, 14, 0.68) 100%
        );
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border-bottom: 1px solid rgba(235, 240, 245, 0.12);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Верхний мягкий глянец */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 18%,
            rgba(205, 215, 225, 0.045) 32%,
            rgba(255, 255, 255, 0.015) 46%,
            transparent 60%
        );
    pointer-events: none;
    opacity: 0.9;
}

/* Нижняя тонкая платиновая линия */
.header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 12%,
            rgba(225, 230, 236, 0.75) 50%,
            rgba(255, 255, 255, 0.08) 88%,
            transparent 100%
        );
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(210, 220, 230, 0.08);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 2rem;
}

/* ========== БРЕНД ========== */

.brand {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    position: relative;
}

.brand-main {
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    color: #f6f8fb;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.08),
        0 0 18px rgba(210, 220, 230, 0.08);
}

/* Холодный платиновый дубль */
.brand-main::before {
    content: 'ТЕМЫ';
    position: absolute;
    inset: 0;
    color: rgba(218, 226, 235, 0.18);
    transform: translate(1px, 2px);
    filter: blur(6px);
    z-index: -1;
}

/* Очень тонкий алмазный блик */
.brand-main::after {
    content: '';
    position: absolute;
    top: 12%;
    left: 8%;
    width: 84%;
    height: 30%;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.0) 20%,
            rgba(255, 255, 255, 0.18) 50%,
            rgba(255, 255, 255, 0.0) 80%,
            transparent 100%
        );
    filter: blur(6px);
    opacity: 0.75;
    pointer-events: none;
}

.brand-divider {
    width: 1px;
    height: 38px;
    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.14) 20%,
            rgba(232, 238, 244, 0.85) 50%,
            rgba(255, 255, 255, 0.14) 80%,
            transparent 100%
        );
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.12),
        0 0 18px rgba(205, 215, 225, 0.08);
}

.brand-subs {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.brand-sub {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(225, 230, 236, 0.76);
    transition: color 0.25s ease, text-shadow 0.25s ease, opacity 0.25s ease;
}

.brand-sub:hover {
    color: #ffffff;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.28),
        0 0 20px rgba(215, 225, 235, 0.16);
}

.brand-sub::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.0),
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.0)
        );
    transition: width 0.28s ease;
}

.brand-sub:hover::after {
    width: 100%;
}

.brand-diamond {
    position: relative;
    font-size: 1rem;
    color: #f7fbff;
    opacity: 0.9;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.42),
        0 0 18px rgba(220, 230, 240, 0.16);
}

/* ========== ПРАВАЯ ЧАСТЬ ========== */

.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ========== КНОПКИ ========== */

.btn-metal {
    position: relative;
    border: 1px solid rgba(228, 233, 240, 0.14);
    background:
        linear-gradient(
            180deg,
            rgba(46, 51, 58, 0.48) 0%,
            rgba(18, 20, 24, 0.56) 100%
        );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    font-family: 'Montserrat', sans-serif;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

/* Верхний металлический блик */
.btn-metal::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 18%,
            transparent 45%,
            transparent 100%
        );
    pointer-events: none;
}

/* Движущийся алмазный глянец */
.btn-metal::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -40%;
    width: 70%;
    height: 220%;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.0) 10%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0.0) 90%,
            transparent 100%
        );
    transform: rotate(18deg);
    opacity: 0;
    transition: opacity 0.25s ease, left 0.45s ease;
    pointer-events: none;
    filter: blur(8px);
}

.btn-metal:hover::after {
    opacity: 1;
    left: 78%;
}

.btn-metal:hover {
    transform: translateY(-1px);
    border-color: rgba(245, 248, 252, 0.28);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(210, 220, 232, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.btn-auth {
    padding: 0 1.65rem;
    min-width: 210px;
}

.btn-auth .btn-text {
    position: relative;
    z-index: 2;
    color: #edf2f7;
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ========== FIX: БЕЛЫЙ ТЕКСТ ДЛЯ ВСЕХ КНОПОК ========== */
.btn-metal .btn-text,
.btn .btn-text,
.upload-trigger .btn-text,
.media-upload-button .btn-text,
.submit-button .btn-text,
.btn-auth .btn-text,
.btn-lang .btn-lang-text,
.switch-link,
.switch-link span {
    color: #ffffff;
}

/* Для кнопки-ссылки переключения между регистрацией и логином */
.switch-link {
    color: rgba(228,234,240,0.68);
}

.switch-link span {
    color: #f7fbff;
}

.btn-lang {
    width: 74px;
    padding: 0;
}

.btn-lang-text {
    position: relative;
    z-index: 2;
    color: #f4f7fb;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.btn-menu {
    width: 50px;
    height: 50px;
    padding: 0;
}

/* ========== МЕНЮ-ИКОНКА ========== */

.menu-icon {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 28px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4px;
}

.menu-line {
    height: 1.5px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.42),
            rgba(248, 250, 252, 0.95),
            rgba(255, 255, 255, 0.42)
        );
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    transition: width 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.menu-dot {
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.35),
        0 0 14px rgba(220, 228, 236, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.menu-item-1 .menu-line {
    width: 18px;
}

.menu-item-3 {
    justify-content: flex-end;
}

.menu-item-3 .menu-line {
    width: 18px;
}

.menu-item-3 .menu-dot {
    margin-right: 4px;
}

.btn-menu:hover .menu-line {
    width: 21px;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.18),
        0 0 18px rgba(230, 236, 242, 0.08);
}

.btn-menu:hover .menu-dot {
    transform: scale(1.18);
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.45),
        0 0 18px rgba(235, 240, 245, 0.12);
}

/* Необязательный тонкий glow-слой */
.header-glow {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 20px;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(225, 232, 240, 0.05) 0%,
            rgba(255, 255, 255, 0.0) 100%
        );
    filter: blur(8px);
    opacity: 0.8;
}

/* ========== MONEY RAIN БЕЗ ВИДИМОГО БЛОКА ========== */

.money-rain {
    position: absolute;
    left: 12px;
    top: 72px;              /* старт прямо под шапкой */
    width: 520px;           /* растягиваем на всю зону бренда */
    height: 600px;          /* чтобы поток доходил до hero */
    pointer-events: none;
    z-index: 2;             /* ниже героя, чтобы часть денег шла за буквой Т */
    overflow: visible;
}

.money-particles {
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
}

.money-particles-back {
    z-index: 1;
    opacity: 0.55;
    filter: blur(0.4px);
}

.money-particles-front {
    z-index: 2;
}

/* Купюра */
.bill {
    position: absolute;
    top: -120px;
    left: 0;
    width: 78px;
    height: auto;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity, filter;

    filter:
        brightness(0.88)
        saturate(0.92)
        contrast(1.06)
        drop-shadow(0 8px 14px rgba(0,0,0,0.34));
}

/* чтобы герой гарантированно был выше денег */
.hero {
    position: relative;
    z-index: 6;
}

/* шапка тоже выше денег */
.header {
    position: relative;
    z-index: 20;
}

/* ========== ГЕРОЙ ========== */
.main-content {
    flex: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 4rem;
    width: 100%;
}

.hero {
    text-align: center;
    margin: 1.2rem 0 2.2rem 0;
    position: relative;
    min-height: 360px;
}

.hero-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

/* ========== СТЕКЛЯННАЯ ПОДЛОЖКА ПОД СЛОВОМ ========== */
/* Тут можно менять ширину, высоту, свечение и положение подложки */
.glass-underlay {
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 980px);
    height: 132px;
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 999px;
    box-shadow:
        0 0 80px rgba(255, 255, 255, 0.05),
        0 0 140px rgba(210, 218, 230, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: 0;
    animation: glassBreathing 10s ease-in-out infinite;
}

@keyframes glassBreathing {
    0%, 100% {
        opacity: 0.24;
        transform: translateX(-50%) scale(0.96);
        filter: blur(24px);
    }
    50% {
        opacity: 0.38;
        transform: translateX(-50%) scale(1.03);
        filter: blur(18px);
    }
}

/* ========== КОНТЕЙНЕР СЛОВА ИЗ ВИДЕО-БУКВ ========== */
/* Тут меняется общая компоновка слова */
.diamond-word-video {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: flex-end; /* буквы выравниваются по нижнему краю */
    justify-content: center;
    gap: 0; /* ОБЩИЙ gap лучше держать 0, а расстояния задавать каждой букве отдельно */
    padding: 0 0.4rem;
    line-height: 0;
    filter:
        drop-shadow(0 0 14px rgba(255, 255, 255, 0.08))
        drop-shadow(0 0 34px rgba(220, 228, 236, 0.07));
}

/* ========== ОБЩИЙ СТИЛЬ ВСЕХ БУКВ-ВИДЕО ========== */
/* Это база для всех букв. Индивидуальную настройку делаем ниже */
.diamond-letter {
    display: block;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
}

/* ========================================================= */
/* ================= ИНДИВИДУАЛЬНЫЕ БУКВЫ ================== */
/* ========================================================= */


/* ===== БУКВА Т ===== */
/* Тут подгоняешь только букву Т */
.letter-t {
    height: 270px;      /* размер буквы Т */
    margin-left: 0;
    margin-right: -60px; /* расстояние до буквы Е */
    top: 14px;           /* опустить/поднять букву */
}

/* ===== БУКВА Е ===== */
/* Тут подгоняешь только букву Е */
.letter-e {
    height: 270px;      /* размер буквы Е */
    margin-left: 0;
    margin-right: -20px; /* расстояние до буквы М */
    top: 14px;
}

/* ===== БУКВА М ===== */
/* Тут подгоняешь только букву М */
.letter-m {
    height: 270px;      /* размер буквы М */
    margin-left: 0;
    margin-right: 2px;  /* расстояние до буквы Ы */
    top: 14px;
}

/* ===== БУКВА Ы ===== */
/* Тут подгоняешь только букву Ы */
.letter-y {
    height: 250px;      /* размер буквы Ы */
    margin-left: 0;
    margin-right: 0;
    top: -1px;
}

/* ========== ИСКРЫ ВОКРУГ СЛОВА ========== */
.platinum-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkFloat 12s ease-in-out infinite;
    opacity: 0;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.95),
        0 0 18px rgba(229, 228, 226, 0.55);
}

.spark:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.spark:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.spark:nth-child(3) { top: 28%; left: 88%; animation-delay: 4s; }
.spark:nth-child(4) { top: 80%; left: 30%; animation-delay: 6s; }
.spark:nth-child(5) { top: 18%; left: 68%; animation-delay: 8s; }

@keyframes sparkFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    20% {
        transform: translate(24px, -32px) scale(1.55);
        opacity: 0.72;
    }
    40% {
        transform: translate(42px, 22px) scale(1.25);
        opacity: 0.48;
    }
    60% {
        transform: translate(-24px, 40px) scale(1.45);
        opacity: 0.70;
    }
    80% {
        transform: translate(-42px, -18px) scale(1.15);
        opacity: 0.35;
    }
}

/* ========== БОКОВОЙ МОДУЛЬ ВЫБРОСА АЛМАЗОВ ========== */

.diamond-dispenser {
    position: absolute;
    right: 18px;
    top: 24px;
    z-index: 18;
    width: 170px;
    display: flex;
    justify-content: center;
}

/* Основной корпус */
.diamond-box {
    position: relative;
    z-index: 50;
    width: 150px;
    height: 240px;
    border-radius: 28px;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(20, 22, 28, 0.82) 0%,
            rgba(10, 11, 15, 0.88) 100%
        );

    border: 1px solid rgba(228, 234, 241, 0.12);

    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.28),
        0 0 24px rgba(220,230,240,0.05),
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 -1px 0 rgba(0,0,0,0.24);
}

/* Верхний металлический глянец */
.diamond-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08) 0%,
            rgba(255,255,255,0.025) 14%,
            transparent 38%,
            transparent 66%,
            rgba(255,255,255,0.03) 100%
        );
    pointer-events: none;
}

/* Внутренняя тонкая рамка */
.diamond-box::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.012),
        0 0 14px rgba(255,255,255,0.015);
    pointer-events: none;
}

/* Внутренний контент */
.diamond-box-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

/* Верхний/нижний орнамент */
.diamond-box-ornament {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 18px;
    opacity: 0.8;
    pointer-events: none;
}

.diamond-box-ornament::before,
.diamond-box-ornament::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid rgba(240,244,248,0.18);
    box-shadow:
        0 0 8px rgba(255,255,255,0.05),
        inset 0 0 6px rgba(255,255,255,0.02);
}

.diamond-box-ornament::before {
    left: 0;
    width: 10px;
    height: 10px;
}

.diamond-box-ornament::after {
    right: 0;
    width: 10px;
    height: 10px;
}

.diamond-box-ornament-top {
    top: 12px;
}

.diamond-box-ornament-bottom {
    bottom: 12px;
}

/* Рамка под алмаз */
.diamond-icon-frame {
    position: relative;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));

    border: 1px solid rgba(255,255,255,0.09);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 18px rgba(220,228,236,0.04);
}

/* Мягкое свечение за алмазом */
.diamond-icon-glow {
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 38%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

/* Сам алмаз */
.diamond-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.98;
    filter:
        drop-shadow(0 0 8px rgba(255,255,255,0.42))
        drop-shadow(0 0 16px rgba(255,255,255,0.12));
}

.diamond-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* Алмазная кнопка */

.diamond-button {

    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    background: transparent;

    cursor: pointer;

    padding: 0;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;

}

/* сама кнопка-картинка */

.diamond-button img {

    width: 52px;
    height: 52px;

    object-fit: contain;

    pointer-events: none;

    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.35))
        drop-shadow(0 0 14px rgba(255,255,255,0.12));

}

/* hover эффект */

.diamond-button:hover {

    transform: scale(1.12);

    filter:
        drop-shadow(0 0 12px rgba(255,255,255,0.45))
        drop-shadow(0 0 24px rgba(255,255,255,0.18));

}

/* Зона падения алмазов */
.diamond-particles {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 108px;
    height: 1px;
    transform: translateX(-50%);
    overflow: visible;
    pointer-events: none;
    z-index: 10;
}

/* Сами падающие алмазы */
.diamond {
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    will-change: transform, opacity, filter;
    transform-origin: center center;
    filter:
        drop-shadow(0 0 5px rgba(255,255,255,0.34))
        drop-shadow(0 0 12px rgba(255,255,255,0.12));
    animation: sparkle 1.8s infinite alternate;
}

@keyframes sparkle {
    0% {
        filter:
            drop-shadow(0 0 4px rgba(255,255,255,0.22))
            drop-shadow(0 0 8px rgba(255,255,255,0.08));
    }

    100% {
        filter:
            drop-shadow(0 0 8px rgba(255,255,255,0.52))
            drop-shadow(0 0 16px rgba(255,255,255,0.16));
    }
}

/* ========== ПОДМЕНЮ ========== */
/* ========== ПОДМЕНЮ ========== */

.hero-submenu {
    position: relative;
    z-index: 8;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.4rem;

    margin-top: 1.8rem;
    padding: 0.9rem 1.8rem;

    opacity: 0;
    transform: translateY(-18px) scale(0.98);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;

    pointer-events: none;
}

/* активное состояние */
.hero-submenu.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* декоративная общая мягкая линия за подменю */
.hero-submenu::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 780px);
    height: 64px;
    border-radius: 999px;

    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.012) 38%, transparent 72%);

    filter: blur(18px);
    pointer-events: none;
    z-index: -1;
}

/* каждый пункт */
.submenu-item {
    position: relative;
    cursor: pointer;
    padding: 0.35rem 0.2rem 0.7rem;
    transition: transform 0.22s ease;
}

.submenu-item:hover {
    transform: translateY(-1px);
}

/* текст */
.submenu-text {
    position: relative;
    z-index: 2;

    font-family: 'Montserrat', sans-serif;
    font-size: 1.28rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    line-height: 1;

    color: rgba(233, 238, 244, 0.82);

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease,
        opacity 0.25s ease;
}

/* легкий diamond-glow при наведении */
.submenu-item:hover .submenu-text {
    color: #ffffff;
    text-shadow:
        0 0 12px rgba(255,255,255,0.34),
        0 0 22px rgba(220,228,236,0.14);
}

/* линия под пунктом */
.submenu-underline {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.12) 18%,
            rgba(255,255,255,0.92) 50%,
            rgba(255,255,255,0.12) 82%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(255,255,255,0.10),
        0 0 18px rgba(220,228,236,0.05);

    transition: width 0.28s ease;
}

/* при наведении линия раскрывается */
.submenu-item:hover .submenu-underline {
    width: 100%;
}

/* маленькие diamond-точки между пунктами через псевдоэлемент */
.submenu-item::after {
    content: "";
    position: absolute;
    right: -1.9rem;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.95),
        rgba(210,220,230,0.52)
    );

    border-radius: 1px;
    box-shadow:
        0 0 8px rgba(255,255,255,0.16),
        0 0 14px rgba(220,228,236,0.06);

    opacity: 0.7;
}

/* у последнего пункта точку убираем */
.submenu-item:last-child::after {
    display: none;
}

/* ========== ФИКСИРОВАННОЕ СВЕЧЕНИЕ ПОД ГЕРОЕМ ПРИ ОТКРЫТОМ ПОДМЕНЮ ========== */

/* это состояние будет включаться через JS:
   glass.classList.add('submenu-open')
*/
.glass-underlay.submenu-open {
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 90px rgba(255, 255, 255, 0.10),
        0 0 140px rgba(210, 220, 230, 0.12),
        0 0 180px rgba(255, 255, 255, 0.06);
}

/* ========== КАРТОЧКИ ========== */
/* ========== КАРТОЧКИ ========== */
.cards-section {
    margin: 1rem 0 4rem 0;
}

/* Верхний ряд: Модели и Менеджеры */
.cards-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem auto;
}

/* Нижний ряд: Темы по центру */
.cards-grid-bottom {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Карточка */
.diamond-card {
    position: relative;
    width: 100%;
    max-width: 487px;
    height: 220px;
    cursor: pointer;
    perspective: 2000px;
    animation: fadeInDiamond 0.8s ease forwards, floatCard 7s ease-in-out infinite;
    opacity: 0;
}

#stat-model,
#stat-manager {
    width: 100%;
}

#stat-topic {
    width: 100%;
    max-width: 487px;
}

#stat-model { animation-delay: 0.1s, 0s; }
#stat-manager { animation-delay: 0.3s, 0.6s; }
#stat-topic { animation-delay: 0.5s, 1.2s; }

.diamond-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition:
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.35s ease;
    transform-style: preserve-3d;
}

.diamond-card:hover .diamond-card-inner {
    transform: translateY(-3px) rotateX(4deg) rotateY(4deg) scale(1.028);
    filter: brightness(1.03);
}

/* ========== НОВЫЙ ЯРЧЕ ВЫРАЖЕННЫЙ ПЛАТИНОВО-АЛМАЗНЫЙ ФОН ========== */
.platinum-card-bg {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(
            145deg,
            rgba(248, 251, 255, 0.16) 0%,
            rgba(214, 223, 233, 0.11) 14%,
            rgba(52, 57, 64, 0.24) 34%,
            rgba(18, 20, 24, 0.58) 58%,
            rgba(210, 219, 229, 0.13) 100%
        );
    border: 1px solid rgba(232, 238, 245, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 18px 34px rgba(0, 0, 0, 0.24),
        0 0 22px rgba(220, 230, 240, 0.06);
}

/* Внутренний глянец */
.platinum-card-bg::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.09) 0%,
            rgba(255, 255, 255, 0.03) 18%,
            transparent 38%,
            transparent 62%,
            rgba(255, 255, 255, 0.04) 100%
        );
    opacity: 1;
}

/* Тёмная глубина + нижний отсвет */
.platinum-card-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 120%, rgba(255,255,255,0.075) 0%, transparent 40%),
        radial-gradient(circle at 50% -20%, rgba(255,255,255,0.05) 0%, transparent 26%),
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.14) 100%);
    opacity: 0.9;
}

/* Движущийся блик */
.platinum-card-shine {
    position: absolute;
    top: -24%;
    left: -38%;
    width: 46%;
    height: 170%;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.0) 18%,
            rgba(255,255,255,0.18) 48%,
            rgba(255,255,255,0.0) 82%,
            transparent 100%
        );
    transform: rotate(16deg);
    filter: blur(10px);
    opacity: 0.75;
    animation: cardShineMove 8.2s ease-in-out infinite;
}

/* Лёгкая россыпь микро-света */
.platinum-card-noise {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    opacity: 0.16;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.38) 0 0.75px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.24) 0 0.75px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.32) 0 0.7px, transparent 1px),
        radial-gradient(circle at 82% 24%, rgba(255,255,255,0.24) 0 0.75px, transparent 1px);
    background-size: 28px 28px, 34px 34px, 22px 22px, 30px 30px;
    mix-blend-mode: screen;
}

/* Более заметные грани */
.platinum-card-facet {
    position: absolute;
    opacity: 0.7;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.16),
            rgba(255,255,255,0.05),
            transparent
        );
    filter: blur(0.15px);
}

/* Верхняя левая грань */
.platinum-card-facet-1 {
    top: 14px;
    left: 18px;
    width: 142px;
    height: 40px;
    clip-path: polygon(0 50%, 14% 0, 100% 0, 84% 100%, 10% 100%);
}

/* Верхняя правая грань */
.platinum-card-facet-2 {
    right: 22px;
    top: 22px;
    width: 108px;
    height: 32px;
    clip-path: polygon(0 50%, 18% 0, 100% 0, 82% 100%, 10% 100%);
}

/* Нижняя центральная грань */
.platinum-card-facet-3 {
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: 176px;
    height: 26px;
    clip-path: polygon(0 50%, 10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%);
}

/* Дополнительные диагональные алмазные рёбра через псевдо-элементы */
.platinum-card-bg .platinum-card-facet-1::before,
.platinum-card-bg .platinum-card-facet-2::before,
.platinum-card-bg .platinum-card-facet-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.12) 50%,
            transparent 100%
        );
    mix-blend-mode: screen;
    opacity: 0.75;
}

/* Углы делаем чуть ярче */
.platinum-card-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(240, 244, 248, 0.44);
    transform: rotate(45deg);
    box-shadow:
        0 0 12px rgba(255,255,255,0.09),
        inset 0 0 9px rgba(255,255,255,0.05);
    opacity: 0.9;
}

.platinum-card-corner-tl {
    top: 14px;
    left: 14px;
}

.platinum-card-corner-tr {
    top: 14px;
    right: 14px;
}

.platinum-card-corner-bl {
    bottom: 14px;
    left: 14px;
}

.platinum-card-corner-br {
    bottom: 14px;
    right: 14px;
}

/* Ещё 4 маленьких внутренних алмаза без изменения HTML */
.platinum-card-bg .platinum-card-corner-tl::before,
.platinum-card-bg .platinum-card-corner-tr::before,
.platinum-card-bg .platinum-card-corner-bl::before,
.platinum-card-bg .platinum-card-corner-br::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.9),
        rgba(215,225,235,0.28)
    );
    border-radius: 1px;
    opacity: 0.55;
    box-shadow: 0 0 8px rgba(255,255,255,0.16);
}

/* Контент карточки */
.diamond-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
    border-radius: 26px;
}

/* Hover более дорогой и холодный */
.diamond-card:hover .platinum-card-bg {
    border-color: rgba(245, 248, 252, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.24),
        0 22px 42px rgba(0, 0, 0, 0.3),
        0 0 38px rgba(225, 232, 240, 0.1);
}

.diamond-card:hover .platinum-card-shine {
    opacity: 1;
}

.diamond-card:hover .platinum-card-facet {
    opacity: 0.9;
}

.diamond-card:hover .platinum-card-noise {
    opacity: 0.2;
}

/* Тонкий внутренний diamond-frame */
.diamond-card-content::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.015),
        0 0 14px rgba(255,255,255,0.02);
    pointer-events: none;
}

/* Header */
.diamond-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.55rem;
}

/* ========== 3D БУКВЫ — ОСТАВЛЯЕМ ========== */
.diamond-label {
    display: inline-flex;
    gap: 0.2rem;
    position: relative;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.letter-3d {
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    width: auto;
    height: auto;
    color: transparent;
}

.letter-3d::before {
    content: attr(data-letter);
    position: absolute;
    top: -0.5px;
    left: -0.5px;
    color: #E5E4E2;
    -webkit-text-stroke: 0.8px #A0A0A0;
    text-stroke: 0.8px #A0A0A0;
    z-index: 5;
}

.letter-3d::after {
    content: attr(data-letter);
    position: absolute;
    top: 0px;
    left: 2px;
    color: #E5E4E2;
    z-index: 4;
}

.letter-3d .layer-1 {
    position: absolute;
    top: 2px;
    left: 0px;
    color: #E5E4E2;
    z-index: 3;
}

.letter-3d .layer-2 {
    display: none;
}

.letter-3d .layer-3 {
    display: none;
}

.letter-3d .layer-1,
.letter-3d .layer-2,
.letter-3d .layer-3 {
    display: block;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    pointer-events: none;
}

#stat-model-female .letter-3d::after,
#stat-manager .letter-3d::after,
#stat-topic .letter-3d::after,
#stat-model-male .letter-3d::after {
    left: 2px;
}

#stat-model-female .letter-3d .layer-1,
#stat-manager .letter-3d .layer-1,
#stat-topic .letter-3d .layer-1,
#stat-model-male .letter-3d .layer-1 {
    top: 2px;
    left: 0px;
}

.diamond-card:hover .letter-3d::before {
    color: #E5E4E2;
    -webkit-text-stroke: 0.8px #A0A0A0;
}

.diamond-card:hover .letter-3d::after {
    color: #E5E4E2;
}

.diamond-card:hover .letter-3d .layer-1 {
    color: #E5E4E2;
}

/* Нижний ряд */
.diamond-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    width: 100%;
    position: relative;
    z-index: 3;
}

.diamond-symbol-left,
.diamond-symbol-right {
    font-size: 1.26rem;
    color: #f3f7fb;
    line-height: 1;
    display: inline-block;
    filter:
        drop-shadow(0 0 7px rgba(255,255,255,0.26))
        drop-shadow(0 0 12px rgba(215,225,235,0.08));
    animation: symbolPulseDiamond 3.8s ease-in-out infinite;
}

.diamond-symbol-left { animation-delay: 0s; }
.diamond-symbol-right { animation-delay: 0.45s; }

.diamond-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #e4ebf2 22%,
        #ffffff 50%,
        #ced7e0 74%,
        #f6f9fc 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== АНИМАЦИИ ========== */
@keyframes fadeInDiamond {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.94);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes cardShineMove {
    0%, 100% {
        left: -38%;
        opacity: 0.45;
    }
    50% {
        left: 95%;
        opacity: 1;
    }
}

@keyframes symbolPulseDiamond {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.14);
        opacity: 1;
    }
}

/* ========== НИЖНЯЯ ЛИНИЯ ========== */
.bottom-platinum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin: 2.2rem 0 2rem 0;
}

.platinum-line {
    position: relative;
    width: 300px;
    height: 14px;
    display: flex;
    align-items: center;
}

.platinum-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.2) 10%,
            rgba(240,244,248,0.95) 50%,
            rgba(255,255,255,0.2) 90%,
            transparent 100%
        );
    box-shadow:
        0 0 12px rgba(255,255,255,0.12),
        0 0 18px rgba(210,220,230,0.05);
}

.line-ornament {
    position: absolute;
    top: 50%;
    width: 56px;
    height: 14px;
    transform: translateY(-50%);
}

.line-ornament::before,
.line-ornament::after {
    content: "";
    position: absolute;
    top: 50%;
    border: 1px solid rgba(240,244,248,0.34);
    transform: translateY(-50%) rotate(45deg);
    box-shadow:
        0 0 8px rgba(255,255,255,0.08),
        inset 0 0 6px rgba(255,255,255,0.03);
}

.line-ornament-left {
    left: 6px;
}

.line-ornament-left::before {
    left: 0;
    width: 18px;
    height: 18px;
}

.line-ornament-left::after {
    left: 24px;
    width: 9px;
    height: 9px;
}

.line-ornament-right {
    right: 6px;
}

.line-ornament-right::before {
    right: 0;
    width: 18px;
    height: 18px;
}

.line-ornament-right::after {
    right: 24px;
    width: 9px;
    height: 9px;
}

.platinum-centerpiece {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0 0.3rem;
}

.mini-diamond {
    display: block;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.98),
        rgba(214,224,234,0.78)
    );
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow:
        0 0 8px rgba(255,255,255,0.18),
        0 0 16px rgba(220,228,236,0.06);
    animation: miniDiamondGlow 4.6s ease-in-out infinite;
}

.mini-diamond-1,
.mini-diamond-5 {
    width: 8px;
    height: 8px;
    opacity: 0.75;
}

.mini-diamond-2,
.mini-diamond-4 {
    width: 11px;
    height: 11px;
    opacity: 0.9;
}

.mini-diamond-3 {
    width: 14px;
    height: 14px;
    opacity: 1;
}

.mini-diamond-1 { animation-delay: 0s; }
.mini-diamond-2 { animation-delay: 0.35s; }
.mini-diamond-3 { animation-delay: 0.7s; }
.mini-diamond-4 { animation-delay: 1.05s; }
.mini-diamond-5 { animation-delay: 1.4s; }

@keyframes miniDiamondGlow {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) scale(1.16);
        opacity: 1;
    }
}

/* ========== GOLD BAG / COIN SPILL ========== */

.cards-section {
    position: relative;
}

/* Блок мешка слева от карточки "МОДЕЛИ" */
.gold-bag-block {
    position: absolute;
    left: -70px;
    top: -30px;
    width: 250px;
    height: 320px;
    z-index: 4;
    pointer-events: none;
    transform: translateZ(0);
}

/* Сам мешок */
.gold-bag-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 220px;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    filter:
        drop-shadow(0 22px 34px rgba(0, 0, 0, 0.46))
        drop-shadow(0 0 24px rgba(255, 190, 70, 0.12))
        drop-shadow(0 0 52px rgba(255, 210, 100, 0.06));
    opacity: 0.98;
}

/* Тёплое мягкое свечение под мешком */
.gold-bag-glow {
    position: absolute;
    left: 12px;
    bottom: 8px;
    width: 190px;
    height: 84px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 214, 110, 0.20) 0%,
            rgba(255, 205, 92, 0.10) 36%,
            rgba(255, 190, 70, 0.04) 56%,
            transparent 76%
        );
    filter: blur(22px);
    pointer-events: none;
    z-index: 0;
}

/* Контейнер для монет */
.coin-particles {
    position: absolute;
    left: 110px;
    top: 95px;
    width: 120px;
    height: 120px;
    overflow: visible;
    z-index: 3;
    pointer-events: none;
}

/* Монета */
.coin-particle {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--coin-size, 26px);
    height: var(--coin-size, 26px);
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity, filter;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    filter:
        drop-shadow(0 0 8px rgba(255, 210, 110, 0.22))
        drop-shadow(0 0 18px rgba(255, 180, 60, 0.08));
}

/* Более дорогой блик у части монет */
.coin-particle.shiny {
    filter:
        drop-shadow(0 0 10px rgba(255, 226, 145, 0.32))
        drop-shadow(0 0 26px rgba(255, 190, 80, 0.16));
}

@keyframes coinSpill {
    0% {
        opacity: 0;
        transform:
            translate3d(var(--x0), var(--y0), 0)
            rotate(var(--r0))
            scale(var(--s0));
    }

    10% {
        opacity: 1;
        transform:
            translate3d(
                calc(var(--x0) + (var(--x1) - var(--x0)) * 0.10),
                calc(var(--y0) + (var(--y1) - var(--y0)) * 0.10),
                0
            )
            rotate(calc(var(--r0) + (var(--r1) - var(--r0)) * 0.10))
            scale(calc(var(--s0) + (var(--s1) - var(--s0)) * 0.10));
    }

    100% {
        opacity: 0;
        transform:
            translate3d(var(--x1), var(--y1), 0)
            rotate(var(--r1))
            scale(var(--s1));
    }
}

@keyframes coinFlash {
    0%, 100% {
        filter:
            drop-shadow(0 0 8px rgba(255, 210, 110, 0.20))
            drop-shadow(0 0 18px rgba(255, 180, 60, 0.08));
    }

    45% {
        filter:
            drop-shadow(0 0 14px rgba(255, 236, 170, 0.42))
            drop-shadow(0 0 28px rgba(255, 205, 100, 0.16));
    }

    58% {
        filter:
            drop-shadow(0 0 18px rgba(255, 245, 205, 0.58))
            drop-shadow(0 0 38px rgba(255, 210, 110, 0.22));
    }
}

/* лёгкое дыхание самого мешка */
.gold-bag-block {
    animation: bagLuxuryFloat 7.5s ease-in-out infinite;
}

@keyframes bagLuxuryFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Чтобы карточки были поверх части монет — даёт глубину */
.cards-grid-top,
.cards-grid-bottom {
    position: relative;
    z-index: 6;
}

/* ===============================
   PLATINUM CORE DECORATION
================================ */

.platinum-core {

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 32px;

    margin: 10px auto 20px auto;
    width: 100%;
}

/* линии */

.core-line {

    position: relative;
    width: 220px;
    height: 12px;
}

.core-line::before {

    content: "";

    position: absolute;
    top: 50%;
    left: 0;
    right: 0;

    height: 1px;

    transform: translateY(-50%);

    background:
    linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.18) 20%,
        rgba(230,236,242,0.95) 50%,
        rgba(255,255,255,0.18) 80%,
        transparent 100%
    );

    box-shadow:
    0 0 10px rgba(255,255,255,0.08),
    0 0 20px rgba(220,228,236,0.05);
}

/* центральный блок */

.core-center {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    position: relative;
}

/* ромбики */

.core-diamond {

    display: block;

    width: 10px;
    height: 10px;

    transform: rotate(45deg);

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.98),
        rgba(220,230,240,0.7)
    );

    border-radius: 1px;

    box-shadow:
    0 0 6px rgba(255,255,255,0.14),
    0 0 14px rgba(220,228,236,0.08);

    animation: coreDiamondGlow 4.6s ease-in-out infinite;
}

/* разные размеры */

.core-diamond-1,
.core-diamond-5 {

    width: 8px;
    height: 8px;
    opacity: 0.65;
}

.core-diamond-2,
.core-diamond-4 {

    width: 11px;
    height: 11px;
    opacity: 0.9;
}

.core-diamond-3 {

    width: 14px;
    height: 14px;
}

/* задержки анимации */

.core-diamond-1 { animation-delay: 0s; }
.core-diamond-2 { animation-delay: 0.3s; }
.core-diamond-3 { animation-delay: 0.6s; }
.core-diamond-4 { animation-delay: 0.9s; }
.core-diamond-5 { animation-delay: 1.2s; }

@keyframes coreDiamondGlow {

    0%,100% {

        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }

    50% {

        transform: rotate(45deg) scale(1.25);
        opacity: 1;
    }

}

/* =========================================
   LUXURY CHARACTERS / SIDE OVERLAY
========================================= */

.main-content {
    position: relative;
    overflow: visible;
}

/* Общий слой персонажей теперь НЕ ограничивает движение */
.luxury-characters {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

/* фон можно оставить очень мягким */
.luxury-characters-bg {
    display: none;
}

/* общий блок персонажа */
.character {
    position: absolute;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    will-change: transform, filter;
    animation: characterFloat 7s ease-in-out infinite;
    overflow: visible;
}

/* мягкое свечение */
.character-glow {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: 68%;
    height: 22%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.045) 0%,
            rgba(220,228,236,0.02) 36%,
            rgba(255,255,255,0.00) 72%
        );
    filter: blur(22px);
    pointer-events: none;
    z-index: 0;
}

/* картинка */
.character img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    overflow: visible;

    filter:
        drop-shadow(0 12px 24px rgba(0,0,0,0.26))
        drop-shadow(0 0 12px rgba(255,255,255,0.025));

    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 10%, black 100%);
    mask-image: linear-gradient(to top, transparent 0%, black 10%, black 100%);
}

/* девушка — ближе к левому краю, выше */
.character-girl {
    left: -2%;
    top: 800px;
    width: clamp(250px, 23vw, 370px);
    z-index: 3;
    animation-delay: 0s;
}

/* мужчина — ближе к правому краю, выше */
.character-man {
    right: -2%;
    top: 800px;
    width: clamp(265px, 24vw, 390px);
    z-index: 3;
    animation-delay: 1.2s;
}

/* лёгкая асимметрия */
.character-girl img {
    transform: rotate(-1.2deg);
}

.character-man img {
    transform: rotate(1deg);
}

/* плавное floating */
@keyframes characterFloat {
    0%, 100% {
        transform: translate3d(0, 0px, 0);
    }
    50% {
        transform: translate3d(0, -9px, 0);
    }
}

/* тонкий блик */
.character::after {
    content: "";
    position: absolute;
    top: 8%;
    left: -18%;
    width: 34%;
    height: 74%;
    transform: rotate(10deg);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.00) 18%,
            rgba(255,255,255,0.035) 50%,
            rgba(255,255,255,0.00) 82%,
            transparent 100%
        );
    filter: blur(12px);
    opacity: 0;
    animation: characterShine 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.character-girl::after {
    animation-delay: 1.2s;
}

.character-man::after {
    animation-delay: 3.1s;
}

@keyframes characterShine {
    0%, 100% {
        left: -18%;
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    42% {
        opacity: 0.14;
    }
    58% {
        left: 80%;
        opacity: 0;
    }
}

/* =========================
   REAL CIGAR SMOKE
========================= */

.cigar-smoke {
    position: absolute;
    left: 12%;
    top: 4%;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 5;
}

/* создаём 3 струи */
.cigar-smoke span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 14px;
    height: 40px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(230, 235, 240, 0.18);
    filter: blur(6px);
    opacity: 0;

    animation: smokeRise linear infinite;
}

/* разные задержки для натуральности */
.cigar-smoke span:nth-child(1) {
    animation-duration: 2.8s;
    animation-delay: 0s;
}

.cigar-smoke span:nth-child(2) {
    animation-duration: 3.2s;
    animation-delay: 0.6s;
}

.cigar-smoke span:nth-child(3) {
    animation-duration: 3.6s;
    animation-delay: 1.2s;
}

/* сама анимация */
@keyframes smokeRise {
    0% {
        transform: translateX(-50%) translateY(0) scale(0.6);
        opacity: 0;
    }

    10% {
        opacity: 0.25;
    }

    40% {
        transform: translateX(-40%) translateY(-30px) scale(0.9);
        opacity: 0.2;
    }

    70% {
        transform: translateX(-60%) translateY(-65px) scale(1.2);
        opacity: 0.12;
    }

    100% {
        transform: translateX(-45%) translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

.page-spacer {
    height: 220px;
}

/* ========== 4 КАРТОЧКИ / 2x2 ========== */

.cards-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

#stat-model-female,
#stat-manager,
#stat-topic,
#stat-model-male {
    width: 100%;
    max-width: 487px;
}

#stat-model-female { animation-delay: 0.1s, 0s; }
#stat-manager      { animation-delay: 0.3s, 0.6s; }
#stat-topic        { animation-delay: 0.5s, 1.2s; }
#stat-model-male   { animation-delay: 0.7s, 1.8s; }

/* ========== GENDER BADGE ========== */

.diamond-header {
    position: relative;
}

.gender-badge {
    position: absolute;
    top: -6px;
    right: 18px;

    width: 34px;
    height: 34px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;

    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 0 14px rgba(255,255,255,0.06),
        0 8px 18px rgba(0,0,0,0.24);

    z-index: 6;
}

.gender-badge-female {
    color: #ffd7ea;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), transparent 58%),
        linear-gradient(180deg, rgba(255, 105, 180, 0.22), rgba(255, 20, 147, 0.12));
    text-shadow:
        0 0 8px rgba(255,182,193,0.45),
        0 0 16px rgba(255,105,180,0.18);
}

.gender-badge-male {
    color: #d8ecff;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), transparent 58%),
        linear-gradient(180deg, rgba(80, 170, 255, 0.22), rgba(40, 120, 255, 0.12));
    text-shadow:
        0 0 8px rgba(140,200,255,0.45),
        0 0 16px rgba(80,170,255,0.18);
}

.diamond-card:hover .gender-badge {
    transform: translateY(-1px) scale(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.16),
        0 0 18px rgba(255,255,255,0.1),
        0 12px 24px rgba(0,0,0,0.28);
}

/* Убираем стандартное оформление ссылок-оберток карточек */
.diamond-card-link,
.diamond-card-link:link,
.diamond-card-link:visited,
.diamond-card-link:hover,
.diamond-card-link:active {
    text-decoration: none;
    display: block;
    color: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Сохраняем интерактивность при наведении на всю карточку */
.diamond-card-link:hover .diamond-card {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Опционально: добавляем эффект курсора */
.diamond-card-link {
    cursor: pointer;
}

/* Стили для значков гендера без кружка */
.gender-symbol {
    font-size: 1.3em;
    font-weight: 900;
    margin-right: 8px;
    margin-left: -3px; /* Сдвиг влево на 3px */
    display: inline-block;
    line-height: 1;
    text-shadow: 0 0 2px currentColor; /* легкое свечение для объема */
}

.gender-symbol-female {
    color: #ff69b4; /* Розовый для женщин */
}

.gender-symbol-male {
    color: #3b82f6; /* Синий для мужчин */
}

/* Удаляем старый класс gender-badge, если он больше не нужен */
.gender-badge {
    display: none;
}

/* =========================================
   SIDE MENU / DESKTOP ONLY
========================================= */

.side-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 88;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 30%),
        rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    z-index: 90;
    transform: translateX(108%);
    transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.side-menu.active {
    transform: translateX(0);
    pointer-events: auto;
}

.side-menu__inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            180deg,
            rgba(20, 22, 28, 0.92) 0%,
            rgba(10, 11, 15, 0.96) 100%
        );

    border-left: 1px solid rgba(235, 240, 245, 0.14);

    box-shadow:
        -20px 0 60px rgba(0,0,0,0.42),
        inset 1px 0 0 rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.04);

    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.side-menu__inner::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 26px;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.012),
        0 0 18px rgba(255,255,255,0.015);
}

.side-menu__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(240,244,248,0.65) 20%,
            rgba(255,255,255,0.12) 50%,
            rgba(240,244,248,0.65) 80%,
            transparent 100%
        );
    box-shadow:
        0 0 14px rgba(255,255,255,0.12),
        0 0 24px rgba(220,228,236,0.06);
    opacity: 0.7;
}

.side-menu__shine {
    position: absolute;
    top: -10%;
    left: -28%;
    width: 46%;
    height: 140%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(12px);
    transform: rotate(12deg);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.0) 20%,
            rgba(255,255,255,0.12) 52%,
            rgba(255,255,255,0.0) 84%,
            transparent 100%
        );
    animation: sideMenuShine 8.8s ease-in-out infinite;
}

@keyframes sideMenuShine {
    0%, 100% {
        left: -28%;
        opacity: 0.25;
    }
    50% {
        left: 95%;
        opacity: 0.75;
    }
}

.side-menu__header,
.side-menu__nav,
.side-menu__footer {
    position: relative;
    z-index: 2;
}

.side-menu__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 0px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* =========================================
   SIDE MENU BRAND / TOP LINE
========================================= */

.side-menu__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.side-menu__brand-top {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.side-menu__brand-video {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
}

.side-menu-logo-image {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.10))
        drop-shadow(0 0 18px rgba(210,220,230,0.08));
}

.side-menu__brand-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.14em;
    color: #f7fbff;
    text-shadow:
        0 0 12px rgba(255,255,255,0.10),
        0 0 22px rgba(210,220,230,0.08);
}

.side-menu__brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(225,230,236,0.62);
}

.side-menu__brand-divider {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: #f3f6fa;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #eef3f8 18%,
        #cfd7df 48%,
        #ffffff 72%,
        #b9c2cb 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 10px rgba(255,255,255,0.16),
        0 0 18px rgba(220,228,236,0.10),
        0 0 28px rgba(255,255,255,0.08);
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.12));
    opacity: 0.95;
    transform: translateY(-1px);
}

.side-menu__brand-eye {
    display: block;
    width: 80px;
    height: 80px;
    transform: translateY(-12px);
    object-fit: contain;
    flex: 0 0 44px;
    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.16))
        drop-shadow(0 0 18px rgba(210,220,230,0.08));
    opacity: 0.98;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.side-menu__close {
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 1px solid rgba(228, 233, 240, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(
            180deg,
            rgba(46, 51, 58, 0.42) 0%,
            rgba(18, 20, 24, 0.58) 100%
        );
    box-shadow:
        0 8px 20px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.05);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.side-menu__close:hover {
    transform: rotate(90deg) scale(1.04);
    border-color: rgba(245,248,252,0.28);
    box-shadow:
        0 12px 24px rgba(0,0,0,0.28),
        0 0 20px rgba(210,220,232,0.08),
        inset 0 1px 0 rgba(255,255,255,0.07);
}

.side-menu__close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.42),
        rgba(248,250,252,0.95),
        rgba(255,255,255,0.42)
    );
    transform-origin: center;
    box-shadow: 0 0 8px rgba(255,255,255,0.10);
}

.side-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 6px;
}

.side-menu__link {
    position: relative;
    min-height: 66px;
    padding: 0 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
    overflow: hidden;

    border: 1px solid rgba(232, 238, 245, 0.12);

    background:
        linear-gradient(
            145deg,
            rgba(248, 251, 255, 0.08) 0%,
            rgba(214, 223, 233, 0.05) 16%,
            rgba(52, 57, 64, 0.10) 34%,
            rgba(18, 20, 24, 0.42) 64%,
            rgba(210, 219, 229, 0.06) 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 -1px 0 rgba(0,0,0,0.18),
        0 10px 22px rgba(0,0,0,0.18);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.side-menu__link:hover {
    transform: translateX(-4px);
    border-color: rgba(245,248,252,0.24);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.22),
        0 14px 28px rgba(0,0,0,0.24),
        0 0 24px rgba(220,230,240,0.06);
}

.side-menu__link.active {
    border-color: rgba(245,248,252,0.28);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.20),
        0 14px 28px rgba(0,0,0,0.24),
        0 0 26px rgba(220,230,240,0.08);
}

.side-menu__link::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.05) 0%,
            transparent 30%,
            transparent 70%,
            rgba(255,255,255,0.025) 100%
        );
    pointer-events: none;
}

.side-menu__link-text {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,244,248,0.92);
    text-shadow:
        0 0 8px rgba(255,255,255,0.06);
}

.side-menu__cash {
    position: relative;
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #e4ebf2 20%,
        #ffffff 48%,
        #cfd8e1 76%,
        #f6f9fc 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.08));
}

.side-menu__link-glow {
    position: absolute;
    top: -30%;
    left: -40%;
    width: 42%;
    height: 180%;
    pointer-events: none;
    opacity: 0;
    filter: blur(10px);
    transform: rotate(18deg);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.0) 16%,
            rgba(255,255,255,0.12) 50%,
            rgba(255,255,255,0.0) 84%,
            transparent 100%
        );
    transition:
        opacity 0.25s ease,
        left 0.45s ease;
}

.side-menu__link:hover .side-menu__link-glow {
    opacity: 1;
    left: 92%;
}

.side-menu__link--cash {
    margin-top: 10px;
}

.side-menu__footer {
    margin-top: auto;
    padding-top: 24px;
}

.side-menu__footer-line {
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.10) 16%,
            rgba(230,236,242,0.88) 50%,
            rgba(255,255,255,0.10) 84%,
            transparent 100%
        );
    box-shadow:
        0 0 12px rgba(255,255,255,0.10),
        0 0 18px rgba(220,228,236,0.05);
}

.side-menu__diamonds {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.side-menu__diamonds span {
    display: block;
    transform: rotate(45deg);
    border-radius: 2px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.98),
        rgba(214,224,234,0.72)
    );
    box-shadow:
        0 0 8px rgba(255,255,255,0.16),
        0 0 16px rgba(220,228,236,0.06);
    animation: sideDiamondPulse 4.2s ease-in-out infinite;
}

.side-menu__diamonds span:nth-child(1) {
    width: 8px;
    height: 8px;
    opacity: 0.72;
    animation-delay: 0s;
}

.side-menu__diamonds span:nth-child(2) {
    width: 12px;
    height: 12px;
    opacity: 1;
    animation-delay: 0.35s;
}

.side-menu__diamonds span:nth-child(3) {
    width: 8px;
    height: 8px;
    opacity: 0.72;
    animation-delay: 0.7s;
}

@keyframes sideDiamondPulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.65;
    }
    50% {
        transform: rotate(45deg) scale(1.18);
        opacity: 1;
    }
}

.section-caption-diamond-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex: 0 0 14px;
    display: block;
    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.18))
        drop-shadow(0 0 12px rgba(220,228,236,0.08));
    opacity: 0.96;
}

.side-menu__footer-eye-mobile {
    display: none;
}