
:root {
    --bg:          #0B0414;
    --bg-2:        #120726;
    --bg-3:        #18092f;
    --card:        #160a2b;
    --surface:     rgba(255, 255, 255, 0.035);
    --border:      rgba(255, 255, 255, 0.09);
    --border-soft: rgba(255, 255, 255, 0.06);

    --violet:        #8B5CF6;
    --violet-bright: #A855F7;
    --violet-deep:   #6D28D9;
    --magenta:       #EC4899;
    --gold:          #FFD230;
    --gold-deep:     #F5A623;

    --text:       #F4F1FA;
    --text-dim:   #BBB0D6;
    --text-faint: #877B9E;

    --success: #34D399;
    --amber:   #FBBF24;

    --grad-violet: linear-gradient(135deg, #A855F7 0%, #6D28D9 100%);
    --grad-gold:   linear-gradient(135deg, #FFE07A 0%, #F5A623 100%);
    --grad-spark:  linear-gradient(120deg, #A855F7 0%, #EC4899 60%, #F5A623 120%);

    --header-h: 74px;
    --radius:   16px;
    --radius-lg: 22px;
    --maxw:     1200px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-card: 0 18px 50px -20px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 60px -12px rgba(168, 85, 247, 0.55);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Subtle film grain for depth */
.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }

::selection { background: var(--violet); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }

.section { padding: 96px 0; position: relative; z-index: 2; }
.section-alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head-left { margin-left: 0; text-align: left; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.section-sub { color: var(--text-dim); font-size: 1.05rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet-bright);
    margin-bottom: 16px;
}
.eyebrow-dot {
    width: 26px; height: 2px; border-radius: 2px;
    background: var(--grad-spark);
}

/* ---------- Buttons ---------- */
.btn {
    --b-pad-y: 13px; --b-pad-x: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: var(--b-pad-y) var(--b-pad-x);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
    white-space: nowrap;
    line-height: 1;
}
.btn-sm { --b-pad-y: 10px; --b-pad-x: 18px; font-size: 0.875rem; }
.btn-lg { --b-pad-y: 17px; --b-pad-x: 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--grad-violet);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(124, 58, 237, 0.85); }

.btn-gold {
    background: var(--grad-gold);
    color: #2A1605;
    box-shadow: 0 10px 30px -10px rgba(245, 166, 35, 0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 42px -10px rgba(245, 166, 35, 0.9); }

.btn-outline {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
    backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--violet-bright); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--text-dim); }
.btn-ghost:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 100;
    display: flex;
    align-items: center;
    background: rgba(11, 4, 20, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-soft);
}
.header-inner {
    width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; object-fit: contain; }
.brand-name {
    font-family: var(--font-display); font-weight: 700; font-size: 1.18rem;
    line-height: 1; color: #fff; display: flex; flex-direction: column;
}
.brand-sub {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--violet-bright); margin-top: 3px;
}

.main-nav { display: flex; gap: 30px; margin-left: 14px; margin-right: auto; }
.nav-link {
    font-size: 0.95rem; font-weight: 500; color: var(--text-dim); position: relative; padding: 4px 0;
}
.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--grad-spark); border-radius: 2px; transition: width 0.3s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 12px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--border);
    font-size: 0.85rem; font-weight: 600; color: var(--text-dim);
}
.flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 72px) 0 80px;
    z-index: 2;
    overflow: hidden;
}
.hero-glow {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(680px 460px at 78% 18%, rgba(168, 85, 247, 0.30), transparent 60%),
        radial-gradient(520px 420px at 12% 8%, rgba(236, 72, 153, 0.18), transparent 60%),
        radial-gradient(900px 600px at 50% 120%, rgba(109, 40, 217, 0.22), transparent 60%);
}
.hero-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-title {
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    margin-bottom: 22px;
    background: linear-gradient(180deg, #fff 30%, #d7c9f3 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-copy { min-width: 0; }
.hero-lead { font-size: 1.14rem; color: var(--text-dim); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 16px 26px; }
.hero-badges li { display: inline-flex; align-items: center; gap: 11px; font-size: 0.92rem; color: var(--text-dim); font-weight: 500; }
.badge-ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
}
.badge-ico svg { width: 17px; height: 17px; }
.badge-ico-green   { background: rgba(52,211,153,0.15);  color: var(--success); }
.badge-ico-gold    { background: rgba(255,210,48,0.15);  color: var(--gold); }
.badge-ico-magenta { background: rgba(236,72,153,0.15);  color: var(--magenta); }
.badge-ico-violet  { background: rgba(168,85,247,0.16);  color: var(--violet-bright); }

/* Hero visual + signature bonus card */
.hero-visual { position: relative; }
.hero-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    aspect-ratio: 4 / 3.2;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.bonus-card {
    position: absolute;
    left: -28px; bottom: -36px;
    width: min(320px, 86%);
    padding: 22px 22px 24px;
    border-radius: var(--radius);
    background:
        linear-gradient(var(--card), var(--card)) padding-box,
        var(--grad-spark) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 24px 60px -18px rgba(0,0,0,0.85), var(--shadow-glow);
    animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.bonus-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bonus-label { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.bonus-chip {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 5px 9px; border-radius: 999px; color: #2A1605;
    background: var(--grad-gold);
}
.bonus-amount { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.bonus-amount .bonus-pct { color: var(--violet-bright); }
.bonus-amount strong {
    background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; font-size: 1.7rem;
}
.bonus-meta { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-dim); margin-bottom: 18px; }
.bonus-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }
.bonus-fineprint { display: block; margin-top: 12px; font-size: 0.72rem; color: var(--text-faint); text-align: center; }

/* ---------- Stats strip ---------- */
.stats { position: relative; z-index: 2; padding: 8px 0 24px; }
.stats-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 26px 24px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}
.stat { text-align: center; padding: 6px; }
.stat-num {
    display: block; font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.86rem; color: var(--text-dim); }

/* ---------- Games ---------- */
.filters {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px;
}
.filter {
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
    padding: 10px 20px; border-radius: 999px; cursor: pointer;
    background: var(--surface); border: 1px solid var(--border); color: var(--text-dim);
    transition: all 0.25s var(--ease);
}
.filter:hover { color: #fff; border-color: var(--violet); }
.filter.is-active { background: var(--grad-violet); color: #fff; border-color: transparent; box-shadow: 0 8px 22px -10px rgba(124,58,237,0.8); }

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.game {
    position: relative;
    display: flex; flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.game:hover { transform: translateY(-8px); border-color: var(--violet); box-shadow: 0 22px 46px -22px rgba(124,58,237,0.7); }
.game-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-3); }
.game-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.game:hover .game-media img { transform: scale(1.07); }
.game-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11,4,20,0.85) 100%);
}
.game-tag {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    font-family: var(--font-display); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
    padding: 5px 10px; border-radius: 999px;
}
.tag-hot { background: var(--grad-gold); color: #2A1605; }
.tag-new { background: var(--grad-violet); color: #fff; }
.tag-live { background: var(--magenta); color: #fff; }
.tag-jackpot { background: linear-gradient(135deg,#FFE07A,#F5A623); color: #2A1605; }
.game-body { position: relative; z-index: 2; padding: 14px 16px 6px; }
.game-name { font-size: 0.98rem; font-weight: 600; margin-bottom: 2px; }
.game-dev { font-size: 0.8rem; color: var(--text-faint); }
.game-play {
    margin: 12px 16px 16px;
    text-align: center;
    font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
    padding: 10px; border-radius: 10px;
    background: var(--surface); border: 1px solid var(--border); color: var(--text);
    transition: all 0.25s var(--ease);
}
.game:hover .game-play { background: var(--grad-violet); border-color: transparent; color: #fff; }

/* Catalog CTA below grid */
.catalog-cta {
    margin-top: 34px;
    text-align: center;
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(168,85,247,0.10), rgba(245,166,35,0.06)), var(--card);
    border: 1px solid var(--border);
}
.catalog-cta p { color: var(--text-dim); font-size: 1.02rem; max-width: 620px; margin: 0 auto 20px; }

/* ---------- Registration offer banner ---------- */
.offer-banner { position: relative; z-index: 2; padding: 14px 0 6px; }
.offer-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    padding: 38px 44px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(120deg, rgba(168,85,247,0.22), rgba(236,72,153,0.14) 55%, rgba(245,166,35,0.16)),
        var(--bg-3);
    border: 1.5px solid transparent;
    background-clip: padding-box;
    box-shadow: var(--shadow-glow);
    position: relative; overflow: hidden;
}
.offer-inner::before {
    content: ''; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit;
    background: var(--grad-spark); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.7;
}
.offer-left { max-width: 640px; }
.offer-eyebrow { display: inline-block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.offer-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 12px; }
.offer-title span { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.offer-text { color: var(--text-dim); margin-bottom: 18px; font-size: 1.02rem; }
.offer-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.promo-code {
    font-size: 0.9rem; color: var(--text-dim);
    padding: 8px 14px; border-radius: 8px;
    background: rgba(0,0,0,0.35); border: 1px dashed rgba(255,255,255,0.25);
}
.promo-code strong { color: var(--gold); letter-spacing: 0.06em; font-family: var(--font-display); }
.offer-note { font-size: 0.82rem; color: var(--text-faint); }
.offer-cta { flex-shrink: 0; }

/* ---------- Payments: KYC / withdrawals ---------- */
.pay-details { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.pay-card {
    padding: 28px 28px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--violet);
}
.pay-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pay-card > p { color: var(--text-dim); font-size: 0.96rem; margin-bottom: 16px; }
.pay-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pay-list li { position: relative; padding-left: 26px; color: var(--text-dim); font-size: 0.94rem; }
.pay-list li::before {
    content: ''; position: absolute; left: 0; top: 7px; width: 13px; height: 13px; border-radius: 4px;
    background: var(--grad-violet);
}

/* ---------- Promotions cards ---------- */
.promo-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.promo-card {
    padding: 30px 30px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border-soft);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.promo-card:hover { transform: translateY(-6px); border-color: var(--violet); }
.promo-ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px; font-size: 1.5rem; margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(245,166,35,0.12));
    border: 1px solid var(--border);
}
.promo-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.promo-card p { color: var(--text-dim); font-size: 0.96rem; }
.promo-card strong { color: var(--gold); font-family: var(--font-display); }

/* ---------- Specs list (payment methods) ---------- */
.specs { list-style: none; margin-top: 8px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.specs li {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 15px 22px; border-bottom: 1px solid var(--border-soft);
    background: var(--card);
}
.specs li:last-child { border-bottom: none; }
.specs span { color: var(--text-dim); font-size: 0.94rem; }
.specs strong { color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; text-align: right; }

/* ---------- Note box (responsible gaming) ---------- */
.note-box {
    margin: 22px 0;
    padding: 22px 26px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--magenta);
}
.note-box p { color: var(--text-dim); margin: 0; }
.note-box strong { color: var(--text); }
.note-box .age-badge { vertical-align: middle; margin-left: 8px; }

/* ---------- Steps (payments) ---------- */
.steps {
    list-style: none;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 32px 26px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; margin-bottom: 18px;
    font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
    border-radius: 14px; color: #fff;
    background: var(--grad-violet);
    box-shadow: 0 10px 26px -12px rgba(124,58,237,0.9);
}
.step-title { font-size: 1.18rem; margin-bottom: 9px; }
.step p { color: var(--text-dim); font-size: 0.96rem; }

/* ---------- Pros & cons ---------- */
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc-col { padding: 32px 30px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--card); }
.pc-pros { box-shadow: inset 3px 0 0 var(--success); }
.pc-cons { box-shadow: inset 3px 0 0 var(--amber); }
.pc-head { display: flex; align-items: center; gap: 12px; font-size: 1.35rem; margin-bottom: 22px; }
.pc-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 10px; font-size: 1.3rem; font-weight: 700; line-height: 1;
}
.pc-icon-plus { background: rgba(52,211,153,0.14); color: var(--success); }
.pc-icon-minus { background: rgba(251,191,36,0.14); color: var(--amber); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pc-list li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: 0.97rem; }
.pc-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 14px; height: 14px; border-radius: 50%;
}
.pc-pros .pc-list li::before { background: radial-gradient(circle, var(--success) 40%, transparent 42%); }
.pc-cons .pc-list li::before { background: radial-gradient(circle, var(--amber) 40%, transparent 42%); }
.pc-list strong { color: var(--text); }

/* ---------- Promo band ---------- */
.promo-band {
    position: relative; z-index: 2;
    padding: 8px 0;
}
.promo-band-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
    padding: 44px 44px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(120deg, rgba(168,85,247,0.18), rgba(236,72,153,0.12)),
        var(--bg-3);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
}
.promo-band-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 8px; }
.promo-band-text p { color: var(--text-dim); }

/* ---------- Opinions ---------- */
.opinions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.opinion {
    padding: 28px 26px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border-soft);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.opinion:hover { transform: translateY(-6px); border-color: var(--violet); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.opinion blockquote { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 20px; }
.opinion-author { display: flex; align-items: center; gap: 12px; }
.opinion-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--violet); }
.opinion-author span { display: flex; flex-direction: column; font-size: 0.82rem; color: var(--text-faint); }
.opinion-author strong { color: var(--text); font-size: 0.95rem; font-family: var(--font-display); }
.opinions-footnote { margin-top: 32px; text-align: center; color: var(--text-faint); font-size: 0.9rem; }

/* ---------- Article / SEO content ---------- */
.article h3 {
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    margin: 34px 0 12px;
    color: var(--text);
}
.article h3:first-of-type { margin-top: 8px; }
.article p { color: var(--text-dim); margin-bottom: 16px; font-size: 1.02rem; }
.article strong { color: var(--text); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 4px 22px;
    transition: border-color 0.25s var(--ease);
}
.faq-item[open], .faq-item:hover { border-color: var(--violet); }
.faq-item summary {
    list-style: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
    padding: 18px 36px 18px 0; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
    color: var(--violet-bright); font-size: 1.4rem; font-weight: 400; transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--text-dim); font-size: 0.97rem; padding: 0 0 20px; }

/* ---------- Footer ---------- */
.site-footer {
    position: relative; z-index: 2;
    background: var(--bg-2);
    border-top: 1px solid var(--border-soft);
    padding: 64px 0 28px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px;
    padding-bottom: 40px; border-bottom: 1px solid var(--border-soft);
}
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.95rem; margin-bottom: 11px; }
.footer-col a:hover { color: var(--violet-bright); }
.footer-help p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 14px; }
.footer-help strong { color: var(--text); }
.age-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    border: 2px solid var(--magenta); color: var(--magenta);
    font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
}
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    padding-top: 24px;
}
.footer-bottom p { color: var(--text-faint); font-size: 0.84rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--violet-deep); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 460px; }
    .hero-badges { gap: 12px 22px; }
    .steps { grid-template-columns: 1fr; }
    .pay-details { grid-template-columns: 1fr; }
    .promo-cards { grid-template-columns: 1fr; }
    .opinions-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .offer-inner { flex-direction: column; align-items: flex-start; padding: 32px 30px; }
    .offer-cta { width: 100%; }
}

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

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-actions .btn-ghost { display: none; }
    .burger { display: flex; }

    .main-nav.is-open {
        display: flex; flex-direction: column; gap: 0;
        position: fixed; top: var(--header-h); left: 0; right: 0;
        background: rgba(11,4,20,0.97); backdrop-filter: blur(16px);
        padding: 8px 24px 20px; border-bottom: 1px solid var(--border);
        margin: 0; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    }
    .main-nav.is-open .nav-link { padding: 15px 0; border-bottom: 1px solid var(--border-soft); }
    .main-nav.is-open .nav-link::after { display: none; }

    .section { padding: 68px 0; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .pc-grid { grid-template-columns: 1fr; }
    .opinions-grid { grid-template-columns: 1fr; }
    .promo-band-inner { flex-direction: column; text-align: center; padding: 34px 26px; }

    .bonus-card { left: 0; right: 0; bottom: -30px; margin: 0 auto; width: min(320px, 92%); }
    .hero { padding-bottom: 70px; }
    .hero-visual { margin: 0 auto; padding-bottom: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 0 16px; gap: 12px; }
    .brand-name { font-size: 1.05rem; }
    .hero-title { font-size: 2.05rem; }
    .hero-lead { font-size: 1.02rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .game-name { font-size: 0.9rem; }
    .section-title { font-size: 1.75rem; }
    .pc-col { padding: 26px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stat-num { font-size: 1.5rem; }
    .offer-inner { padding: 26px 20px; }
    .specs li { padding: 13px 16px; }

    .btn { white-space: normal; text-align: center; }
    .catalog-cta .btn, .offer-cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
    .bonus-card { animation: none; }
    html { scroll-behavior: auto; }
}
