:root {
    --bg-dark: #0a1f1a;
    --bg-card: #112e26;
    --bg-card-hover: #163d32;
    --emerald-deep: #0d3d28;
    --emerald: #0f5132;
    --emerald-light: #157347;
    --emerald-glow: #1a6b44;
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    --gold-dark: #d4990a;
    --gold-neon: #ffe066;
    --gold-glow: rgba(251, 191, 36, 0.4);
    --text-primary: #f0fdf4;
    --text-secondary: #a7c4b8;
    --text-muted: #6b8f7e;
    --border: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(251, 191, 36, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 0 20px rgba(251, 191, 36, 0.3), 0 0 60px rgba(251, 191, 36, 0.1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
}

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

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

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

body.no-scroll {
    overflow: hidden;
}

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

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

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

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

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

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a1f1a;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 80px rgba(251, 191, 36, 0.15);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn--xl {
    padding: 20px 48px;
    font-size: 1.1rem;
}

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

/* ===== HEADER ===== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: rgba(10, 31, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.header__nav {
    display: flex;
    gap: 32px;
}

.header__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

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

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 31, 26, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

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

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
    min-width: 260px;
}

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(15, 81, 50, 0.5), transparent),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(251, 191, 36, 0.08), transparent),
        radial-gradient(ellipse 40% 40% at 10% 60%, rgba(15, 81, 50, 0.3), transparent),
        linear-gradient(180deg, var(--bg-dark) 0%, #071a14 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(
        rgba(251, 191, 36, 0.015) 0deg,
        transparent 1deg,
        transparent 30deg
    );
    animation: heroRotate 120s linear infinite;
}

@keyframes heroRotate {
    to { transform: rotate(360deg); }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__content {
    max-width: 780px;
}

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

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 900px;
}

/* ===== FEATURE CARDS (hero) ===== */

.feature-card {
    background: linear-gradient(135deg, #133828, #0e2d22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.feature-card__text strong {
    font-size: 0.85rem;
    font-weight: 700;
}

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

/* ===== GAMES ===== */

.games {
    padding: 100px 0;
    position: relative;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.games__categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-pill {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.category-pill--active {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
    border-color: var(--emerald-light);
    color: var(--text-primary);
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.game-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.game-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.game-card__img {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-card);
    border-radius: var(--radius) var(--radius) 0 0;
}

.game-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-card__img img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.game-card__play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.9);
    color: #0a1f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -24px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.game-card:hover .game-card__play {
    opacity: 1;
    transform: scale(1);
}

.game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.game-card__badge--hot {
    background: #ef4444;
    color: white;
}

.game-card__badge--new {
    background: var(--emerald-light);
    color: white;
}

.game-card__badge--top {
    background: var(--gold);
    color: #0a1f1a;
}

.game-card__name {
    padding: 10px 12px 2px;
    font-size: 0.85rem;
    font-weight: 700;
    background: #122e24;
}

.game-card__provider {
    padding: 0 12px 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: #122e24;
    border-radius: 0 0 var(--radius) var(--radius);
}

.games__more {
    text-align: center;
}

/* ===== BONUSES ===== */

.bonuses {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(13, 46, 37, 0.3), transparent);
}

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

.bonus-card {
    position: relative;
    background: linear-gradient(180deg, #153a2d, #0e2d22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.bonus-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bonus-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bonus-card__glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.06), transparent 70%);
    pointer-events: none;
}

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

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

.bonus-card__value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.bonus-card__desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== CTA BANNER ===== */

.cta-banner {
    padding: 80px 0;
}

.cta-banner__inner {
    background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(251, 191, 36, 0.1), transparent),
        linear-gradient(135deg, var(--emerald-deep), #071a14);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.cta-banner__text {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

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

/* ===== ADVANTAGES ===== */

.advantages {
    padding: 100px 0;
}

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

.advantage-card {
    background: linear-gradient(135deg, #133828, #0e2d22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.advantage-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.advantage-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.advantage-card__icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.advantage-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.advantage-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.advantages__cta {
    text-align: center;
}

/* ===== HOW TO ===== */

.how-to {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(13, 46, 37, 0.2), transparent);
}

.how-to__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.how-to__step {
    text-align: center;
    padding: 32px 24px;
    max-width: 280px;
    opacity: 0;
    transform: translateY(20px);
}

.how-to__step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.how-to__step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.how-to__step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.how-to__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(251, 191, 36, 0.2));
    flex-shrink: 0;
}

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

/* ===== FAQ ===== */

.faq {
    padding: 100px 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    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: var(--transition);
}

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

.faq__item[open] {
    border-color: rgba(251, 191, 36, 0.15);
}

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

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

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

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}

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

/* ===== FINAL CTA ===== */

.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(13, 46, 37, 0.3));
}

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

.final-cta__logo {
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.2));
}

.final-cta__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.final-cta__text {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.final-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */

.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    background: rgba(0, 0, 0, 0.2);
}

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

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    line-height: 1.6;
}

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

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

.footer__links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

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

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

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

.footer__bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.bonus-card:nth-child(1) .animate-in,
.bonus-card.animate-in:nth-child(1) { animation-delay: 0s; }
.bonus-card.animate-in:nth-child(2) { animation-delay: 0.1s; }
.bonus-card.animate-in:nth-child(3) { animation-delay: 0.2s; }
.bonus-card.animate-in:nth-child(4) { animation-delay: 0.3s; }

.game-card.animate-in:nth-child(1) { animation-delay: 0s; }
.game-card.animate-in:nth-child(2) { animation-delay: 0.04s; }
.game-card.animate-in:nth-child(3) { animation-delay: 0.08s; }
.game-card.animate-in:nth-child(4) { animation-delay: 0.12s; }
.game-card.animate-in:nth-child(5) { animation-delay: 0.16s; }
.game-card.animate-in:nth-child(6) { animation-delay: 0.2s; }
.game-card.animate-in:nth-child(7) { animation-delay: 0.24s; }
.game-card.animate-in:nth-child(8) { animation-delay: 0.28s; }
.game-card.animate-in:nth-child(9) { animation-delay: 0.32s; }
.game-card.animate-in:nth-child(10) { animation-delay: 0.36s; }
.game-card.animate-in:nth-child(11) { animation-delay: 0.4s; }
.game-card.animate-in:nth-child(12) { animation-delay: 0.44s; }
.game-card.animate-in:nth-child(13) { animation-delay: 0.48s; }
.game-card.animate-in:nth-child(14) { animation-delay: 0.52s; }
.game-card.animate-in:nth-child(15) { animation-delay: 0.56s; }

.feature-card.animate-in:nth-child(1) { animation-delay: 0.3s; }
.feature-card.animate-in:nth-child(2) { animation-delay: 0.4s; }
.feature-card.animate-in:nth-child(3) { animation-delay: 0.5s; }
.feature-card.animate-in:nth-child(4) { animation-delay: 0.6s; }

.advantage-card.animate-in:nth-child(1) { animation-delay: 0s; }
.advantage-card.animate-in:nth-child(2) { animation-delay: 0.1s; }
.advantage-card.animate-in:nth-child(3) { animation-delay: 0.2s; }
.advantage-card.animate-in:nth-child(4) { animation-delay: 0.3s; }
.advantage-card.animate-in:nth-child(5) { animation-delay: 0.4s; }
.advantage-card.animate-in:nth-child(6) { animation-delay: 0.5s; }

.how-to__step.animate-in:nth-child(1) { animation-delay: 0s; }
.how-to__step.animate-in:nth-child(3) { animation-delay: 0.2s; }
.how-to__step.animate-in:nth-child(5) { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .games__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero__cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }

    .games__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonuses__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .header__burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .games__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bonuses__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }

    .how-to__steps {
        flex-direction: column;
    }

    .how-to__connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--gold), rgba(251, 191, 36, 0.2));
    }

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

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

    .section-desc {
        font-size: 0.95rem;
    }

    .games,
    .bonuses,
    .advantages,
    .how-to,
    .faq,
    .final-cta {
        padding: 60px 0;
    }

    .cta-banner {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero__cards {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

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

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

    .games__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .games__categories {
        gap: 8px;
    }

    .category-pill {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .cta-banner__buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq__question {
        font-size: 0.9rem;
        padding: 16px 18px;
    }

    .faq__answer {
        padding: 0 18px 16px;
        font-size: 0.88rem;
    }
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--emerald);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--emerald-light);
}

/* ===== SELECTION ===== */

::selection {
    background: rgba(251, 191, 36, 0.3);
    color: var(--text-primary);
}
