/* ===== VARIABLES ===== */
:root {
    --bg-primary: #0a1f17;
    --bg-secondary: #0d2b1f;
    --bg-card: #112e22;
    --bg-card-hover: #163a2c;
    --bg-dark: #071a12;

    --emerald-50: #e8f5ef;
    --emerald-100: #c4e6d4;
    --emerald-200: #81c9a0;
    --emerald-300: #4aac76;
    --emerald-400: #2d9960;
    --emerald-500: #1a7a4a;
    --emerald-600: #136338;
    --emerald-700: #0d4a2a;
    --emerald-800: #0a3a20;
    --emerald-900: #062818;

    --gold-light: #ffe4a0;
    --gold: #FFD679;
    --gold-dark: #d4a843;
    --gold-glow: rgba(255, 214, 121, 0.4);
    --gold-glow-strong: rgba(255, 214, 121, 0.6);

    --text-primary: #f0f5f2;
    --text-secondary: #a3c4b3;
    --text-muted: #6a9a82;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 0 20px var(--gold-glow), 0 0 40px rgba(255,214,121,0.15);
    --shadow-gold-hover: 0 0 30px var(--gold-glow-strong), 0 0 60px rgba(255,214,121,0.25);

    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.02em;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a1f17;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255,214,121,0.3);
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-2px);
}
.btn--gold:active {
    transform: translateY(0);
}
.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 15px rgba(255,214,121,0.2);
    transform: translateY(-2px);
}
.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}
.btn--full { width: 100%; }
.gold { color: var(--gold); }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 31, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,214,121,0.08);
    transition: all 0.3s ease;
}
.header--scrolled {
    background: rgba(10, 31, 23, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom-color: rgba(255,214,121,0.15);
}
.header__inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 32px;
}
.header__logo img {
    height: 44px;
    width: auto;
}
.header__nav { flex: 1; }
.header__menu {
    display: flex;
    gap: 28px;
}
.header__menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.25s;
    position: relative;
    padding: 4px 0;
}
.header__menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}
.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 22px; font-size: 13px; }
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
}
.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu.active {
    pointer-events: all;
    opacity: 1;
}
.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--bg-secondary);
    padding: 24px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(255,214,121,0.1);
}
.mobile-menu.active .mobile-menu__panel { right: 0; }
.mobile-menu__close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.mobile-menu__list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu__list a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.mobile-menu__list a:hover {
    color: var(--gold);
    background: rgba(255,214,121,0.05);
}
.mobile-menu__actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 60px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: url('header-bg.webp') center/cover no-repeat;
    z-index: 0;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,31,23,0.7) 0%, rgba(10,31,23,0.5) 40%, rgba(10,31,23,0.85) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(26,122,74,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255,214,121,0.08) 0%, transparent 50%);
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--emerald-200) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero__trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero__trust-item {
    text-align: center;
}
.hero__trust-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.hero__trust-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}
.section--dark {
    background: var(--bg-secondary);
}
.section__title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section__desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}
.section__cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== FEATURES ===== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255,214,121,0.06);
    transition: all 0.35s ease;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,214,121,0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--gold);
}
.feature-card__icon svg {
    width: 100%;
    height: 100%;
}
.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.feature-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.game-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,214,121,0.06);
    transition: all 0.35s ease;
    position: relative;
}
.game-card:hover {
    border-color: rgba(255,214,121,0.25);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(255,214,121,0.1);
}
.game-card__img {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}
.game-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.game-card:hover .game-card__img img {
    transform: scale(1.08);
}
.game-card__info {
    padding: 14px 16px;
    flex: 1;
}
.game-card__info h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-card__info p {
    font-size: 12px;
    color: var(--text-muted);
}
.game-card__play {
    display: block;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255,214,121,0.1) 0%, rgba(255,214,121,0.05) 100%);
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    border-top: 1px solid rgba(255,214,121,0.1);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.game-card:hover .game-card__play {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
}

/* ===== BONUSES ===== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255,214,121,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.bonus-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,214,121,0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.bonus-card--featured {
    border-color: rgba(255,214,121,0.25);
    background: linear-gradient(180deg, rgba(255,214,121,0.08) 0%, var(--bg-card) 40%);
}
.bonus-card--featured:hover {
    border-color: rgba(255,214,121,0.4);
}
.bonus-card__badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.bonus-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}
.bonus-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.bonus-card__value {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.2;
}
.bonus-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(255,214,121,0.2) 100%);
    z-index: 0;
}
.step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step__number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
    position: relative;
}
.step__content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    border: 1px solid rgba(255,214,121,0.06);
}
.step__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== PROVIDERS ===== */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.provider {
    background: var(--bg-card);
    border: 1px solid rgba(255,214,121,0.06);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.provider:hover {
    border-color: rgba(255,214,121,0.2);
    color: var(--gold);
    background: var(--bg-card-hover);
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.advantage {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid rgba(255,214,121,0.06);
    transition: all 0.35s;
}
.advantage:hover {
    border-color: rgba(255,214,121,0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.advantage__icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}
.advantage__icon svg {
    width: 100%;
    height: 100%;
}
.advantage h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.advantage p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,214,121,0.06);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item[open] {
    border-color: rgba(255,214,121,0.2);
}
.faq-item__question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.25s;
    list-style: none;
    color: var(--text-primary);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
}
.faq-item[open] .faq-item__question {
    color: var(--gold);
}
.faq-item__answer {
    padding: 0 24px 20px;
}
.faq-item__answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background:
        linear-gradient(135deg, rgba(26,122,74,0.3) 0%, rgba(10,31,23,0.9) 50%, rgba(255,214,121,0.1) 100%),
        var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,214,121,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-banner__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-banner__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-banner__text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,214,121,0.08);
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer__logo img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}
.footer__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}
.footer__links h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer__links li {
    margin-bottom: 10px;
}
.footer__links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.25s;
}
.footer__links a:hover {
    color: var(--gold);
}
.footer__bottom {
    border-top: 1px solid rgba(255,214,121,0.06);
    padding: 20px 0;
    text-align: center;
}
.footer__bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 500;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-hover);
}

/* ===== ANIMATIONS ===== */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:nth-child(2).animate-target { transition-delay: 0.1s; }
.feature-card:nth-child(3).animate-target { transition-delay: 0.2s; }
.feature-card:nth-child(4).animate-target { transition-delay: 0.3s; }
.game-card:nth-child(2).animate-target { transition-delay: 0.05s; }
.game-card:nth-child(3).animate-target { transition-delay: 0.1s; }
.game-card:nth-child(4).animate-target { transition-delay: 0.15s; }
.game-card:nth-child(5).animate-target { transition-delay: 0.2s; }
.game-card:nth-child(6).animate-target { transition-delay: 0.05s; }
.game-card:nth-child(7).animate-target { transition-delay: 0.1s; }
.game-card:nth-child(8).animate-target { transition-delay: 0.15s; }
.game-card:nth-child(9).animate-target { transition-delay: 0.2s; }
.game-card:nth-child(10).animate-target { transition-delay: 0.25s; }
.game-card:nth-child(n+11).animate-target { transition-delay: 0.1s; }
.bonus-card:nth-child(2).animate-target { transition-delay: 0.1s; }
.bonus-card:nth-child(3).animate-target { transition-delay: 0.2s; }
.bonus-card:nth-child(4).animate-target { transition-delay: 0.3s; }
.step:nth-child(2).animate-target { transition-delay: 0.15s; }
.step:nth-child(3).animate-target { transition-delay: 0.3s; }
.step:nth-child(4).animate-target { transition-delay: 0.45s; }
.advantage:nth-child(2).animate-target { transition-delay: 0.1s; }
.advantage:nth-child(3).animate-target { transition-delay: 0.2s; }
.advantage:nth-child(4).animate-target { transition-delay: 0.1s; }
.advantage:nth-child(5).animate-target { transition-delay: 0.2s; }
.advantage:nth-child(6).animate-target { transition-delay: 0.3s; }

/* ===== GOLDEN GLOW PULSE ===== */
@keyframes goldPulse {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: var(--shadow-gold-hover); }
}
.btn--gold {
    animation: goldPulse 3s ease-in-out infinite;
}
.btn--gold:hover {
    animation: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps::before { display: none; }
    .providers-grid { grid-template-columns: repeat(4, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

    .header__nav,
    .header__actions { display: none; }
    .header__burger { display: flex; }

    .hero { min-height: auto; padding: calc(var(--header-h) + 32px) 0 48px; }
    .hero__title { font-size: 28px; }
    .hero__subtitle { font-size: 15px; margin-bottom: 28px; }
    .hero__buttons { flex-direction: column; align-items: center; }
    .hero__buttons .btn { width: 100%; max-width: 320px; }
    .hero__trust { gap: 24px; }
    .hero__trust-num { font-size: 22px; }

    .section { padding: 56px 0; }
    .section__title { font-size: 24px; margin-bottom: 12px; }
    .section__desc { font-size: 14px; margin-bottom: 32px; }

    .features { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bonuses-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .providers-grid { grid-template-columns: repeat(3, 1fr); }
    .advantages-grid { grid-template-columns: 1fr; }

    .game-card__info { padding: 10px 12px; }
    .game-card__info h3 { font-size: 13px; }
    .game-card__info p { font-size: 11px; }
    .game-card__play { padding: 10px; font-size: 12px; }

    .bonus-card__value { font-size: 24px; }
    .step__number { width: 52px; height: 52px; font-size: 20px; }

    .cta-banner { padding: 56px 0; }
    .cta-banner__title { font-size: 24px; }
    .cta-banner__text { font-size: 15px; }
    .cta-banner__buttons { flex-direction: column; align-items: center; }
    .cta-banner__buttons .btn { width: 100%; max-width: 320px; }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer__desc {
        max-width: none;
        margin: 0 auto;
    }
    .footer__logo img { margin: 0 auto 16px; }

    .btn--lg { padding: 14px 28px; font-size: 15px; }

    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__trust { gap: 16px; }
    .hero__trust-item { min-width: 70px; }
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .game-card__info { padding: 8px 10px; }
    .game-card__info h3 { font-size: 12px; }
    .game-card__play { padding: 8px; font-size: 11px; }
    .providers-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card { padding: 24px 20px; }
    .bonus-card { padding: 24px 20px; }
}
