:root {
    --bg-dark: #0a1a12;
    --bg-card: #0f2419;
    --bg-card-hover: #143020;
    --bg-surface: #112b1c;
    --green-deep: #0d2117;
    --green-mid: #163d28;
    --green-light: #1e5738;
    --green-accent: #22c55e;
    --gold: #FFD679;
    --gold-light: #FFE4A0;
    --gold-dark: #D4A843;
    --gold-glow: rgba(255, 214, 121, 0.4);
    --gold-glow-strong: rgba(255, 214, 121, 0.6);
    --text: #e8efe9;
    --text-muted: #8fa898;
    --text-dim: #5a7a66;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 30px rgba(255, 214, 121, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a1a12;
    box-shadow: 0 0 20px var(--gold-glow), 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.btn--gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.btn--gold:hover::before {
    left: 120%;
}

.btn--gold:hover {
    box-shadow: 0 0 40px var(--gold-glow-strong), 0 6px 25px rgba(0,0,0,0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn--outline:hover {
    background: rgba(255, 214, 121, 0.1);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header--scrolled {
    background: rgba(10, 26, 18, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo img {
    height: 44px;
    width: auto;
}

.header__menu {
    display: flex;
    gap: 28px;
}

.header__menu a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.header__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.header__menu a:hover {
    color: var(--gold);
}

.header__menu a:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 12px;
}

.header__actions .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: all;
}

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu__body {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-card);
    padding: 100px 24px 40px;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu__body {
    transform: translateX(0);
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-menu__list a {
    display: block;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu__list a:hover {
    background: rgba(255, 214, 121, 0.1);
    color: var(--gold);
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,26,18,0.3) 0%, rgba(10,26,18,0.6) 50%, var(--bg-dark) 100%),
        linear-gradient(90deg, rgba(10,26,18,0.8) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 140px 20px 80px;
    max-width: 800px;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 214, 121, 0.12);
    border: 1px solid rgba(255, 214, 121, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero__title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Promocode */
.promocode {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--green-deep) 50%, var(--bg-dark) 100%);
}

.promocode__card {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.promocode__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,214,121,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

.promocode__inner {
    position: relative;
    background: linear-gradient(145deg, var(--bg-card), var(--green-deep));
    border: 1px solid rgba(255, 214, 121, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.promocode__icon {
    margin-bottom: 16px;
}

.promocode__label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.promocode__code {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 8px;
    text-shadow: 0 0 30px var(--gold-glow);
    margin-bottom: 20px;
    user-select: all;
}

.promocode__copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 214, 121, 0.1);
    border: 1px solid rgba(255, 214, 121, 0.25);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 28px;
}

.promocode__copy:hover {
    background: rgba(255, 214, 121, 0.2);
    box-shadow: 0 0 15px var(--gold-glow);
}

.promocode__btn {
    margin-bottom: 16px;
}

.promocode__hint {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Bonuses */
.bonuses {
    padding: 100px 0;
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bonus-card {
    background: linear-gradient(165deg, var(--bg-card), var(--green-deep));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.bonus-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bonus-card:hover {
    border-color: rgba(255, 214, 121, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.bonus-card--featured {
    border-color: rgba(255, 214, 121, 0.3);
    box-shadow: 0 0 20px rgba(255, 214, 121, 0.08);
}

.bonus-card__badge {
    position: absolute;
    top: 16px;
    right: -28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    padding: 4px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.bonus-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bonus-card__percent {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
}

.bonus-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bonus-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* How To */
.howto {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--green-deep) 50%, var(--bg-dark) 100%);
}

.howto__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.howto__step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.howto__step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.howto__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 25px var(--gold-glow);
}

.howto__step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.howto__step-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.howto__arrow {
    padding-top: 16px;
    flex-shrink: 0;
}

.howto__cta {
    text-align: center;
}

/* Games */
.games {
    padding: 100px 0;
}

.games__categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.games__cat {
    background: linear-gradient(165deg, var(--bg-card), var(--green-deep));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px 28px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.games__cat.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.games__cat:hover {
    border-color: rgba(255, 214, 121, 0.2);
    transform: translateY(-4px);
}

.games__cat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.games__cat h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.games__cat p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.games__cta {
    text-align: center;
}

/* Advantages */
.advantages {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--green-deep) 50%, var(--bg-dark) 100%);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage {
    text-align: center;
    padding: 32px 20px;
    opacity: 0;
    transform: translateY(30px);
}

.advantage.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.advantage__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 214, 121, 0.08);
    border: 1px solid rgba(255, 214, 121, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantage p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
}

.cta-banner__inner {
    position: relative;
    background: linear-gradient(135deg, var(--green-mid), var(--bg-card));
    border: 1px solid rgba(255, 214, 121, 0.2);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-banner__glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,214,121,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner__text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    position: relative;
}

.cta-banner__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq__list {
    max-width: 760px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq__item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq__item[open] {
    border-color: rgba(255, 214, 121, 0.2);
}

.faq__question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: var(--transition);
    list-style: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    transition: var(--transition);
}

.faq__item[open] .faq__question::after {
    content: '−';
}

.faq__question:hover {
    color: var(--gold);
}

.faq__answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq__cta {
    text-align: center;
}

/* Footer */
.footer {
    padding: 48px 0 120px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__nav a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer__nav a:hover {
    color: var(--gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
}

.footer__copy {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.footer__disclaimer {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    padding: 12px 20px;
    background: linear-gradient(180deg, transparent, rgba(10,26,18,0.95) 30%);
    text-align: center;
    display: none;
}

.fixed-cta__btn {
    max-width: 360px;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .bonuses__grid,
    .games__categories,
    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .howto__steps {
        flex-wrap: wrap;
        gap: 24px;
    }

    .howto__arrow {
        display: none;
    }

    .howto__step {
        max-width: 260px;
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .header__nav,
    .header__actions {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero__content {
        padding: 120px 20px 60px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }

    .promocode__inner {
        padding: 36px 24px;
    }

    .promocode__code {
        letter-spacing: 5px;
    }

    .cta-banner__inner {
        padding: 48px 24px;
    }

    .footer__top {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        justify-content: center;
    }

    .fixed-cta {
        display: block;
    }

    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .bonuses__grid,
    .games__categories,
    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .howto__step {
        flex: 0 0 100%;
    }

    .hero__stats {
        flex-direction: column;
        gap: 12px;
    }

    .hero__stat {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .btn--lg {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
}
