/*
 * Vavada Casino Bulgaria – Premium Night Mode
 * Glassmorphism · Gold CTAs · Glow Effects · Mobile-First
 * Optimised for Cyrillic (Inter)
 * ────────────────────────────────────────────────── */

/* ===== DESIGN TOKENS ===== */
:root {
    --bg-deep:     #0a0914;
    --bg-card:     rgba(18,16,34,.55);
    --bg-elevated: rgba(34,33,56,.5);
    --bg-glass:    rgba(18,16,34,.45);
    --glass-border:rgba(255,255,255,.07);
    --glass-blur:  20px;

    --text-primary:  #f5f5f7;
    --text-secondary:#b0b0c4;

    --gold:          #d4a84b;
    --gold-light:    #f0d88a;
    --gold-glow:     rgba(212,168,75,.35);
    --neon:          #00e676;
    --neon-glow:     rgba(0,230,118,.35);
    --red:           #fe284a;
    --red-hover:     #ff4d6a;

    --border-subtle: rgba(255,255,255,.06);
    --shadow-soft:   0 8px 32px rgba(0,0,0,.4);
    --radius:        16px;
    --radius-sm:     12px;
    --touch-min:     48px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -.01em;               /* tighter for Cyrillic */
}
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
a { color: var(--neon); text-decoration: none; }
a:hover { color: #33eb91; text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section   { padding: 3.5rem 0; }
.section-title {
    font-size: clamp(1.55rem, 4.2vw, 2.15rem);
    font-weight: 800;
    margin: 0 0 .75rem;
    color: var(--text-primary);
    letter-spacing: -.02em;
}
.section-subtitle { color: var(--text-secondary); margin: 0 0 2rem; font-size: 1.05rem; }
.section-cta-center { margin-top: 1.75rem; text-align: center; }

/* ===== GLASSMORPHISM UTILITY ===== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

/* ================================================================
   BUTTONS – Gold primary, scale micro-interaction
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-min);
    padding: 0 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .2s;
    will-change: transform;
}
.btn:hover  { text-decoration: none; }
.btn:active { transform: scale(.96) !important; }

/* Gold (Primary CTA) */
.btn--gold {
    background: linear-gradient(135deg, #c9993a 0%, #e8c56b 45%, #d4a84b 100%);
    color: var(--bg-deep);
    text-shadow: 0 1px 0 rgba(255,255,255,.15);
    box-shadow: 0 4px 18px var(--gold-glow);
}
.btn--gold:hover {
    color: var(--bg-deep);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 36px rgba(212,168,75,.5);
    background: linear-gradient(135deg, #e0b050 0%, #f0d88a 45%, #e8c56b 100%);
}

/* Outline */
.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn--outline:hover {
    background: rgba(212,168,75,.1);
    color: var(--gold-light);
    transform: translateY(-1px) scale(1.02);
}

/* Secondary (Red) */
.btn--secondary {
    background: var(--red);
    color: #fff;
}
.btn--secondary:hover {
    background: var(--red-hover);
    color: #fff;
    transform: translateY(-1px) scale(1.02);
}

/* Large */
.btn--lg {
    min-height: 56px;
    padding: 0 2.5rem;
    font-size: 1.12rem;
    border-radius: var(--radius);
}

/* ================================================================
   HEADER – Glassmorphism nav + hamburger
   ================================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,9,20,.55);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border-subtle);
    transition: background .3s;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: .6rem 20px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 36px; width: auto; }

/* --- Hamburger --- */
.hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 40px; height: 40px;
    background: 0; border: 0; padding: 6px; cursor: pointer;
    z-index: 110;
}
.hamburger-line {
    display: block; width: 100%; height: 2px;
    background: var(--text-primary); border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
/* Open state */
.hamburger.is-active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Nav (mobile: slide-down overlay) --- */
.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,9,20,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 20px 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: .25rem;
}
.nav.is-open { display: flex; }
.nav a {
    display: block;
    padding: .75rem 0;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    transition: color .15s;
}
.nav a:last-child { border-bottom: none; }
.nav a:hover { color: var(--gold); text-decoration: none; }

.header-cta { display: none; }

@media (min-width: 768px) {
    .hamburger { display: none; }
    .nav {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        backdrop-filter: none;
        padding: 0;
        border-bottom: none;
        gap: 0;
    }
    .nav a {
        display: inline;
        padding: 0;
        margin-left: 1.5rem;
        font-size: .92rem;
        font-weight: 500;
        border-bottom: none;
    }
    .header-cta { display: flex; gap: .6rem; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.hero-banner-link { display: block; line-height: 0; }
.hero-banner {
    display: block;
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    object-position: center top;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 20px 2.5rem;
    background: linear-gradient(180deg, transparent 0%, var(--bg-deep) 22%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 50% at 50% 15%, rgba(212,168,75,.05) 0%, transparent 60%);
    pointer-events: none;
}
.hero-logo { margin-bottom: 1.25rem; }
.hero-logo img { height: 48px; width: auto; }
.hero h1 {
    font-size: clamp(1.65rem, 5vw, 2.6rem);
    font-weight: 800;
    margin: 0 0 .4rem;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -.02em;
}
.hero-h1-accent {
    display: block;
    background: linear-gradient(90deg, #c9993a 0%, #f0d88a 40%, #e8c56b 70%, #c9993a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 4s linear infinite;
}
@keyframes gold-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-desc {
    color: var(--text-secondary);
    margin: 0 0 1.25rem;
    max-width: 540px;
    font-size: 1.05rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-cta .btn { min-width: 170px; }

/* Hero countdown */
.hero-countdown {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    padding: .65rem 1.15rem;
    background: rgba(254,40,74,.08);
    border: 1px solid rgba(254,40,74,.18);
    border-radius: 14px;
    width: fit-content;
}
.hero-countdown-label { font-size: .82rem; color: var(--text-secondary); font-weight: 500; }
.cd-blocks { display: flex; align-items: center; gap: .35rem; }
.cd-block {
    display: flex; flex-direction: column; align-items: center;
    min-width: 42px; padding: .3rem .5rem;
    background: rgba(254,40,74,.12); border-radius: 8px;
}
.cd-num {
    font-size: 1.35rem; font-weight: 800; color: var(--red);
    line-height: 1; font-variant-numeric: tabular-nums;
}
.cd-unit { font-size: .58rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.cd-sep  { font-size: 1.2rem; font-weight: 800; color: var(--red); line-height: 1; }

/* Hero social proof */
.hero-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border-subtle);
}
.hero-rating {
    display: inline-flex; align-items: center; gap: .4rem;
    font-weight: 700; font-size: .95rem; color: var(--gold);
}
.hero-stars { letter-spacing: 1px; }
.hero-proof-sep { width: 1px; height: 18px; background: var(--border-subtle); }
.hero-proof-text { font-size: .88rem; color: var(--text-secondary); font-weight: 500; }

/* ================================================================
   WINNERS TICKER
   ================================================================ */
.winners-ticker {
    background: rgba(10,9,20,.9);
    border-top: 1px solid rgba(212,168,75,.1);
    border-bottom: 1px solid rgba(212,168,75,.1);
    overflow: hidden;
    white-space: nowrap;
    padding: .6rem 0;
    position: relative;
}
.winners-ticker::before,
.winners-ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; width: 60px;
    z-index: 2; pointer-events: none;
}
.winners-ticker::before { left: 0;  background: linear-gradient(90deg,  var(--bg-deep), transparent); }
.winners-ticker::after  { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }
.ticker-track { display: flex; animation: ticker-scroll 45s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-content { display: flex; flex-shrink: 0; }
.ticker-item {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: 0 2rem; font-size: .82rem; color: var(--text-secondary);
}
.ticker-item::before {
    content: ''; display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--neon); flex-shrink: 0;
    box-shadow: 0 0 6px var(--neon-glow);
}
.ticker-item b  { color: var(--text-primary); font-weight: 600; }
.ticker-item em { color: var(--neon); font-style: normal; font-weight: 700; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust {
    padding: 2rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
@media (min-width: 768px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }
.trust-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .84rem;
    color: var(--text-secondary);
    line-height: 1.3;
    transition: border-color .2s, transform .2s;
}
.trust-badge:hover { border-color: rgba(212,168,75,.15); transform: translateY(-1px); }
.trust-badge small { font-size: .72rem; opacity: .65; }
.trust-badge-icon {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,230,118,.08);
    color: var(--neon);
}
.trust-badge-icon svg { stroke: var(--neon); }
.trust-cta-line {
    margin: 1.15rem 0 0;
    text-align: center;
    color: var(--neon);
    font-weight: 600;
    font-size: .95rem;
}

/* ================================================================
   BENEFITS (CSS Grid)
   ================================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 600px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.benefit-card {
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), border-color .25s, box-shadow .25s;
}
.benefit-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(212,168,75,.2);
    box-shadow: 0 12px 40px rgba(212,168,75,.08);
}
.benefit-icon { margin-bottom: .75rem; line-height: 1; }
.benefit-icon svg { display: block; }
.benefit-card h3 {
    font-size: 1.05rem; margin: 0 0 .5rem;
    color: var(--gold); line-height: 1.3;
}
.benefit-card p { margin: 0; color: var(--text-secondary); font-size: .93rem; }

/* ================================================================
   GAME CATEGORIES (CSS Grid + Glow hover)
   ================================================================ */
.game-cats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 700px) { .game-cats-grid { grid-template-columns: repeat(3, 1fr); } }
.game-cat-card {
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, border-color .3s;
}
/* Glow effect */
.game-cat-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(212,168,75,.2);
    box-shadow:
        0 0 20px rgba(212,168,75,.1),
        0 0 60px rgba(212,168,75,.05),
        0 16px 48px rgba(0,0,0,.35);
}
.game-cat-header {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}
.game-cat-tag {
    display: inline-block;
    padding: .22rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: rgba(0,230,118,.1);
    color: var(--neon);
}
.game-cat-tag--gold { background: rgba(212,168,75,.12); color: var(--gold); }
.game-cat-tag--red  { background: rgba(254,40,74,.12);  color: var(--red);  }
.game-cat-card h3 { font-size: 1.1rem; margin: 0 0 .5rem; color: var(--text-primary); }
.game-cat-card p  { margin: 0 0 .75rem; color: var(--text-secondary); font-size: .9rem; flex-grow: 1; }
.game-cat-provider {
    font-size: .78rem; color: var(--gold);
    font-weight: 600; opacity: .8;
}

/* Providers grid */
.providers-section { margin-top: .5rem; }
.providers-label { font-size: .9rem; color: var(--text-secondary); font-weight: 600; margin-bottom: .75rem; }
.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
@media (min-width: 500px) { .providers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .providers-grid { grid-template-columns: repeat(5, 1fr); } }
.provider-card {
    border-radius: var(--radius);
    padding: 1rem;
    display: flex; align-items: center; justify-content: center;
    min-height: 68px;
    transition: transform .2s, box-shadow .3s, border-color .3s;
}
/* Provider glow */
.provider-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0,230,118,.15);
    box-shadow: 0 0 18px rgba(0,230,118,.08);
}
.provider-card img {
    max-height: 36px; max-width: 100%;
    object-fit: contain; filter: brightness(1.1);
}

/* ================================================================
   PROMO BANNER
   ================================================================ */
.banner-promo { padding: 0 20px 1rem; }
.banner-promo-link {
    display: block; line-height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.banner-promo-img {
    width: 100%; height: auto;
    max-height: 280px;
    object-fit: cover; object-position: center;
}

/* ================================================================
   BONUS BREAKDOWN
   ================================================================ */
.bonus-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 700px) { .bonus-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.bonus-card {
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    transition: transform .25s, border-color .25s;
}
.bonus-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212,168,75,.15);
}
.bonus-card--step { text-align: center; }
.bonus-step-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #c9993a, #e8c56b);
    color: var(--bg-deep);
    font-weight: 800; font-size: 1.15rem;
    border-radius: 50%;
    margin-bottom: .75rem;
    box-shadow: 0 4px 14px var(--gold-glow);
}
.bonus-card h3 { margin: 0 0 .5rem; color: var(--gold); font-size: 1.15rem; }
.bonus-card p  { margin: 0; color: var(--text-secondary); font-size: .93rem; }
.bonus-label {
    display: inline-block; margin-top: .75rem;
    padding: .22rem .7rem; border-radius: 999px;
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
    background: rgba(0,230,118,.1); color: var(--neon);
}
.bonus-terms {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem;
}
.bonus-terms p     { margin: 0; }
.bonus-terms small { color: var(--text-secondary); font-size: .82rem; line-height: 1.55; }
.bonus-terms a     { color: var(--gold); }
.bonus-cta-wrap    { text-align: center; }
.bonus-urgency {
    color: var(--red); font-weight: 700;
    font-size: .95rem; margin: .75rem 0 0;
}
/* Countdown pill */
.countdown {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1.25rem;
    background: rgba(254,40,74,.08);
    border: 1px solid rgba(254,40,74,.2);
    border-radius: 999px;
    margin-bottom: 1rem;
}
.countdown-label {
    font-size: .85rem; color: var(--text-secondary); font-weight: 500;
}
.countdown-timer {
    font-size: 1.1rem; font-weight: 800; color: var(--red);
    font-variant-numeric: tabular-nums;
}

/* ================================================================
   PAYMENTS
   ================================================================ */
.payment-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 600px) { .payment-highlights { grid-template-columns: repeat(3, 1fr); } }
.payment-hl {
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    transition: transform .2s, border-color .2s;
}
.payment-hl:hover { transform: translateY(-2px); border-color: rgba(0,230,118,.12); }
.payment-hl-value {
    display: block;
    font-size: 1.55rem; font-weight: 800;
    color: var(--neon); margin-bottom: .2rem;
}
.payment-hl-label {
    display: block; font-size: .84rem;
    color: var(--text-secondary); font-weight: 500;
}
.payments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
@media (min-width: 500px) { .payments-grid { grid-template-columns: repeat(4, 1fr); } }
.payment-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex; align-items: center; justify-content: center;
    min-height: 64px;
    border: 1px solid var(--border-subtle);
    transition: border-color .2s;
}
.payment-item:hover { border-color: rgba(255,255,255,.1); }
.payment-item img { max-height: 32px; max-width: 80%; object-fit: contain; }
.payment-text-label {
    color: var(--text-secondary); font-size: .95rem; font-weight: 700;
}
.payments-note {
    margin-top: 1rem; color: var(--neon);
    font-weight: 600; font-size: .93rem;
}

/* ================================================================
   STEPS
   ================================================================ */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    transition: transform .2s;
}
.step:hover { transform: translateY(-3px); }
.step-num {
    width: 50px; height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--red) 0%, #ff4d6a 100%);
    color: #fff;
    font-weight: 800; font-size: 1.25rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(254,40,74,.3);
}
.step h3 { font-size: 1rem; margin: 0 0 .5rem; }
.step p  { margin: 0; color: var(--text-secondary); font-size: .9rem; }

/* ================================================================
   CTA BLOCK
   ================================================================ */
.cta-block {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: var(--radius);
}
.cta-block h2  { margin: 0 0 .5rem; }
.cta-block p   { color: var(--text-secondary); margin: 0 0 1.5rem; }
.cta-block .btn { min-width: 220px; }
.cta-block small {
    display: block; margin-top: 1rem;
    color: var(--text-secondary); font-size: .84rem;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list  { padding: 0; margin: 0; list-style: none; }
.faq-item  { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-question {
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 0;
    background: none; border: none;
    color: var(--text-primary);
    font-size: 1rem; font-weight: 600;
    text-align: left; cursor: pointer;
    display: flex; justify-content: space-between;
    align-items: center; gap: .5rem;
    min-height: var(--touch-min);
    font-family: inherit;
    transition: color .15s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
    content: '+';
    font-size: 1.5rem; color: var(--gold);
    flex-shrink: 0;
    transition: transform .25s;
}
.faq-item.is-open .faq-question::after { content: '\2212'; transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-answer-inner { padding: 0 0 1.1rem; color: var(--text-secondary); font-size: .95rem; line-height: 1.6; }

/* ================================================================
   STICKY MOBILE CTA (pulse animation)
   ================================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99;
    display: flex; gap: .5rem;
    padding: .75rem 16px;
    background: rgba(10,9,20,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -6px 30px rgba(0,0,0,.5);
}
.sticky-cta .btn { flex: 1; font-size: .93rem; }
@media (min-width: 769px) { .sticky-cta { display: none; } }

.sticky-pulse { animation: cta-pulse 2.2s ease-in-out infinite; }
@keyframes cta-pulse {
    0%   { box-shadow: 0 4px 18px var(--gold-glow), 0 0 0 0 rgba(212,168,75,.4); }
    70%  { box-shadow: 0 4px 18px var(--gold-glow), 0 0 0 12px rgba(212,168,75,0); }
    100% { box-shadow: 0 4px 18px var(--gold-glow), 0 0 0 0 rgba(212,168,75,0); }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    padding: 2.5rem 0 1.5rem;
    background: rgba(14,12,28,.95);
    border-top: 1px solid var(--border-subtle);
}
.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-title { font-size: 1rem; margin: 0 0 .75rem; color: var(--text-primary); font-weight: 700; }
.footer ul  { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .45rem; }
.footer ul a  { color: var(--text-secondary); transition: color .15s; }
.footer ul a:hover { color: var(--neon); text-decoration: none; }
.footer p { color: var(--text-secondary); font-size: .88rem; margin: 0 0 .45rem; }
.footer-age {
    color: var(--red) !important;
    font-size: .95rem !important;
    font-weight: 600;
}
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}
.footer-bottom small { color: var(--text-secondary); font-size: .78rem; }

/* ================================================================
   SPACER (for sticky CTA)
   ================================================================ */
.page-bottom { height: 80px; }
@media (min-width: 769px) { .page-bottom { height: 0; } }
