/* ===== VARIABLES ===== */
:root {
    --bg-primary: #07071a;
    --bg-secondary: #0d0d2b;
    --bg-card: #111133;
    --bg-card-hover: #161650;
    --accent: #FF6B00;
    --accent-light: #FF8C33;
    --gold: #FFD700;
    --cyan: #00C8FF;
    --pink: #FF3366;
    --green: #00E68A;
    --text: #E8E8F0;
    --text-muted: #9999BB;
    --text-dim: #666688;
    --border: #222255;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(255,107,0,0.15);
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --container: 1200px;
    --header-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
}

.text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--xl { padding: 20px 48px; font-size: 1.2rem; }

.btn--primary {
    background: var(--accent);
    color: #fff;
}
.btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,0,0.3);
}

.btn--cta {
    background: linear-gradient(135deg, var(--accent), #FF8C33);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,0,0.3);
}
.btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,107,0,0.5);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255,107,0,0.3); }
    50% { box-shadow: 0 4px 40px rgba(255,107,0,0.6), 0 0 60px rgba(255,107,0,0.2); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(7,7,26,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}

.header.scrolled {
    background: rgba(7,7,26,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    z-index: 1002;
    position: relative;
}

.logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
}

.logo__text {
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav__link:hover {
    color: var(--text);
}

.nav__link:hover::after {
    width: 100%;
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
    position: relative;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-h);
    overflow: hidden;
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,7,26,0.3) 0%, rgba(7,7,26,0.8) 70%, var(--bg-primary) 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-200px) scale(1.5); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0 80px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,107,0,0.1);
    border: 1px solid rgba(255,107,0,0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero__bonus {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,215,0,0.05);
    border: 2px solid rgba(255,215,0,0.2);
    border-radius: var(--radius-lg);
    padding: 16px 32px;
    margin-bottom: 32px;
}

.hero__bonus-amount {
    text-align: center;
}

.hero__bonus-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero__bonus-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.8;
}

.hero__bonus-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.hero__bonus-spins { text-align: center; }
.hero__bonus-spin-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.hero__bonus-spin-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
}

.hero__cta { margin-bottom: 12px; }
.hero__cta-note {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 6px auto 0;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section--dark {
    background: var(--bg-secondary);
}

.section--accent {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0a25 50%, var(--bg-primary) 100%);
}

.section--cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary), #1a0a2e);
    position: relative;
}

.section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.08), transparent 70%);
}

.section--cta > * { position: relative; z-index: 1; }

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.game-card__img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.game-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-card__img img {
    transform: scale(1.05);
}

.game-card__overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.game-card__count {
    padding: 4px 12px;
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

.game-card__body {
    padding: 24px;
}

.game-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.game-card__body .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,0.1), transparent);
    border-radius: 50%;
}

.bonus-banner__tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.bonus-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.bonus-banner__desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.bonus-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.bonus-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bonus-step__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
}

.bonus-step__text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.bonus-step__text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bonus-banner__visual {
    position: relative;
}

.bonus-banner__visual img {
    border-radius: var(--radius);
}

/* ===== PROMO GRID ===== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s;
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.promo-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.promo-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ===== SPORTS FEATURES ===== */
.sports-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.sport-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.sport-feature:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
}

.sport-feature__icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.sport-feature h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ===== SPLIT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.split-section--reverse .split-section__media { order: -1; }

.split-section__content .section__tag { margin-bottom: 8px; }
.split-section__content .section__title { text-align: left; margin-bottom: 16px; }

.split-section__content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    margin-bottom: 24px;
}

.feature-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.split-section__media {
    display: flex;
    justify-content: center;
}

.split-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ===== APP FEATURES ===== */
.app-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius);
    padding: 14px;
}

.app-feature__icon { font-size: 1.5rem; flex-shrink: 0; }

.app-feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.app-feature span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== PAYMENTS ===== */
.payments {
    text-align: center;
    margin-bottom: 32px;
}

.payments img {
    display: inline-block;
    border-radius: var(--radius);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.payment-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    transition: border-color 0.3s;
}

.payment-item:hover { border-color: var(--accent); }

.payment-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.payment-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== WHY GRID ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.why-card__icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== REG STEPS ===== */
.reg-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.reg-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: transform 0.3s;
}

.reg-step:hover { transform: translateY(-4px); }

.reg-step__num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 8px;
}

.reg-step h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active { border-color: var(--accent); }

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-item__question:hover { color: var(--accent); }

.faq-item__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item__answer p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #050514;
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 12px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer__links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer__links a:hover { color: var(--accent); }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.footer__disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-dim) !important;
    max-width: 700px;
    margin: 0 auto !important;
    line-height: 1.6;
}

/* ===== AGE GATE ===== */
/* ===== ANIMATIONS ===== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s; opacity: 0; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: repeat(2, 1fr); }
    .sports-features { grid-template-columns: repeat(2, 1fr); }
    .reg-steps { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-primary);
        z-index: 1001;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 30px;
        overflow-y: auto;
    }

    .nav.open {
        display: flex;
    }

    .nav.open .nav__link {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 16px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
        color: var(--text);
    }

    .nav.open .nav__link:first-child {
        border-top: 1px solid var(--border);
    }

    .header__actions { display: none; }
    .burger { display: flex; z-index: 1002; }

    .hero__title { font-size: clamp(1.8rem, 6vw, 2.6rem); }

    .hero__bonus {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px;
    }

    .hero__bonus-num, .hero__bonus-spin-num { font-size: 2.2rem; }
    .hero__bonus-plus { font-size: 1.2rem; }

    .hero__stats { gap: 20px; }
    .hero__stat-num { font-size: 1.2rem; }

    .games-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .sports-features { grid-template-columns: 1fr; }

    .bonus-banner {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .bonus-banner__visual { display: none; }

    .split-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split-section--reverse .split-section__media { order: 0; }

    .split-section__content .section__title { text-align: center; }
    .split-section__content { text-align: center; }
    .feature-list li { text-align: left; }

    .payment-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .reg-steps { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; text-align: center; }

    .section { padding: 60px 0; }
    .btn--lg { padding: 14px 28px; font-size: 1rem; }
    .btn--xl { padding: 16px 36px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.6rem; }
    .hero__bonus { padding: 12px 16px; }
    .hero__bonus-num, .hero__bonus-spin-num { font-size: 1.8rem; }



    .payment-grid { grid-template-columns: 1fr; }
}