/* ============================================
   SLOTLOUNGE CASINO - Design System
   Mobile-first, dark VIP-lounge aesthetic
   ============================================ */

/* ============================================
   RESET & FOUNDATION
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image: var(--grad-radial);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; display: block; }

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }

pre, code, .code-block { max-width: 100%; overflow-x: auto; }

p, li, td, th { overflow-wrap: break-word; }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--secondary-bright); }

input, textarea, select, button { font: inherit; max-width: 100%; }

section { overflow: clip; position: relative; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--secondary); color: var(--secondary-foreground);
    padding: 12px 18px; border-radius: var(--radius);
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================
   TYPOGRAPHY
   Playfair Display for headings, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--foreground);
    margin: 0 0 var(--space-md);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3vw + 1rem, 3.25rem); }
h3 { font-size: clamp(1.25rem, 1.4vw + 1rem, 2rem); }
h4 { font-size: clamp(1.1rem, 0.8vw + 1rem, 1.5rem); }

p { margin: 0 0 var(--space-md); }

.lead { font-size: 1.125rem; color: var(--foreground); opacity: .9; }

.gold-shimmer {
    background: linear-gradient(90deg, #F4D88A 0%, #E8C36A 30%, #FFFBEA 50%, #E8C36A 70%, #B58A2C 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmerSlide 6s linear infinite;
}

@keyframes shimmerSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

/* ============================================
   LAYOUT - Container, sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-lg); }
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

@media (min-width: 1024px) {
    .section { padding: 120px 0; }
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-2xl);
}

.section-header p { color: var(--muted-foreground); }

/* ============================================
   HEADER - Fixed glass with mobile drawer
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(11, 16, 36, 0.85);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
    }
}

main { padding-top: var(--header-h); }

.header-inner {
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: 'Playfair Display', serif;
}

.brand .logo {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--grad-gold);
    box-shadow: 0 0 16px var(--secondary-glow);
    object-fit: cover;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 1.125rem; font-weight: 700; color: var(--foreground); }
.brand-tag { font-size: .75rem; letter-spacing: .25em; color: var(--secondary); text-transform: uppercase; font-family: 'Manrope', sans-serif; font-weight: 500; }

/* Hamburger toggle */
.menu-toggle {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
    padding: 0;
}
.menu-toggle span {
    display: block; width: 20px; height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--background);
    background-image: var(--grad-radial);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-xl) var(--space-md) var(--space-2xl);
    border-top: 1px solid var(--border);
}
.main-nav.is-open { display: flex; flex-direction: column; gap: var(--space-lg); }

.nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 4px;
}
.nav-list a {
    display: flex; align-items: center;
    min-height: 52px;
    padding: 0 var(--space-md);
    color: var(--foreground);
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.nav-list a:hover, .nav-list a:focus-visible {
    background: var(--card-translucent);
    border-color: var(--border);
    color: var(--secondary-bright);
}

.nav-actions {
    display: flex; flex-direction: column; gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-xl);
        background: transparent;
        padding: 0;
        overflow: visible;
        border: none;
    }
    .nav-list { flex-direction: row; gap: 4px; }
    .nav-list a { min-height: 40px; padding: 0 14px; font-size: .9375rem; }
    .nav-actions {
        flex-direction: row; padding: 0; border: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
    position: relative;
    isolation: isolate;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--secondary-foreground);
    box-shadow: 0 8px 24px -8px var(--secondary-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px var(--secondary-glow), 0 0 0 2px rgba(30, 115, 255, .4), inset 0 1px 0 rgba(255,255,255,.5);
    color: var(--secondary-foreground);
}

.btn-ghost {
    background: rgba(30, 115, 255, .08);
    color: var(--foreground);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(30, 115, 255, .18);
    border-color: var(--border-strong);
    color: var(--secondary-bright);
}

.btn-sm { min-height: 40px; padding: 8px 18px; font-size: .9375rem; }
.btn-xl { min-height: 56px; padding: 16px 36px; font-size: 1.125rem; }

@media (min-width: 768px) {
    .btn-xl { min-height: 64px; padding: 18px 44px; font-size: 1.25rem; }
}

/* ============================================
   GLASS CARD - base for all glassmorphic surfaces
   ============================================ */
.glass {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: var(--shadow-glow);
    position: relative;
}

/* ============================================
   GAME CARD
   ============================================ */
.game-card {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-glow);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex; flex-direction: column;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 16px 48px -16px var(--primary-glow), 0 0 0 1px var(--secondary-glow);
}
.game-card-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1A2140, #2A1850);
}
.game-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.game-card-cover-fallback {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 50% 40%, rgba(30,115,255,.4), transparent 60%), linear-gradient(135deg, #1A2140, #2A1850);
}
.coin-emblem {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--secondary-foreground);
    display: grid; place-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 0 24px var(--secondary-glow);
}

.rtp-pill {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--grad-gold);
    color: var(--secondary-foreground);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: .03em;
}

.tag-badge {
    position: absolute;
    top: 10px; left: 10px;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    color: #fff;
}
.tag-hot { background: var(--accent); color: #1A0014; }
.tag-new { background: #FFFFFF; color: #00102E; }
.tag-jackpot { background: linear-gradient(90deg, #FF3DA5, #E8C36A); color: var(--secondary-foreground); }
.tag-live { background: var(--accent); color: #1A0014; box-shadow: 0 0 12px rgba(255,61,165,.6); }

.game-card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.game-card-title { font-size: 1.0625rem; font-weight: 600; margin: 0; }
.game-card-provider { font-size: .8125rem; color: var(--muted-foreground); margin: 0 0 8px; }
.game-card-body .btn { margin-top: auto; }

@media (min-width: 768px) {
    .game-card-body { padding: 20px; }
}

/* Game grid layouts */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
    .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-card {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; gap: var(--space-sm);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 16px 48px -16px var(--primary-glow), 0 0 0 1px var(--secondary-glow);
}
.bonus-card-featured {
    border-color: var(--border-strong);
    background: linear-gradient(135deg, rgba(30,115,255,.18), rgba(20,26,51,.65));
}
.bonus-card-icon {
    font-size: 2rem;
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, rgba(30,115,255,.35), transparent 70%);
    border: 1px solid var(--border);
}
.bonus-figure {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.bonus-name { font-size: 1.125rem; font-weight: 600; margin: 0; }
.bonus-desc { font-size: .9375rem; color: var(--muted-foreground); margin: 0; }
.bonus-code { display: flex; align-items: center; gap: 8px; }
.code-label { font-size: .75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .15em; }
.code-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--secondary);
    color: var(--secondary-bright);
    font-weight: 700;
    letter-spacing: .08em;
    font-size: .875rem;
    background: rgba(232,195,106,.06);
}
.bonus-wagering { font-size: .8125rem; color: var(--muted-foreground); margin: 0; }
.bonus-coin {
    position: absolute; right: -20px; bottom: -20px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #F4D88A, #B58A2C 70%);
    opacity: .25;
    filter: blur(2px);
    pointer-events: none;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
    .bonus-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bonus-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex; flex-direction: column; gap: var(--space-sm);
    max-width: 920px; margin: 0 auto;
}
.faq-item {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item[open] {
    border-color: var(--border-strong);
    box-shadow: 0 0 0 1px var(--secondary-glow), 0 12px 30px -10px var(--primary-glow);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    background: rgba(232,195,106,.08);
    position: relative;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute;
    background: var(--secondary);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform .3s ease; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.65;
}
.faq-answer p { margin: 0 0 var(--space-sm); color: var(--muted-foreground); }
.faq-answer a { color: var(--primary); }
.faq-answer a:hover { color: var(--secondary-bright); text-decoration: underline; text-decoration-color: var(--secondary); }

@media (min-width: 768px) {
    .faq-question { font-size: 1.1875rem; padding: 24px 28px; }
    .faq-answer { padding: 0 28px 24px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    margin: var(--space-3xl) 0;
    padding: 0;
}
.cta-banner-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(30,115,255,.18), rgba(20,26,51,.7) 60%, rgba(99,70,220,.2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px var(--primary-glow);
}
.cta-banner-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(232,195,106,.12), transparent 55%), radial-gradient(circle at 80% 80%, rgba(255,61,165,.10), transparent 55%);
    pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-headline {
    font-size: clamp(2rem, 5vw, 4.25rem);
    margin: 0 0 var(--space-md);
    line-height: 1.1;
}
.cta-subline { font-size: 1.125rem; color: var(--foreground); margin: 0 0 var(--space-xl); }
.cta-microcopy {
    margin-top: var(--space-md);
    font-size: .8125rem;
    color: var(--muted-foreground);
    letter-spacing: .04em;
}
.cta-mascot {
    width: 180px; margin: 0 auto var(--space-md);
}
.cta-mascot img { border-radius: 50%; }
.cta-coin {
    position: absolute;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #F4D88A, #B58A2C 70%);
    box-shadow: 0 0 30px var(--secondary-glow);
    opacity: .55;
    pointer-events: none;
    animation: floatCoin 6s ease-in-out infinite;
}
.cta-coin-1 { top: 15%; left: 6%; width: 40px; height: 40px; animation-delay: 0s; }
.cta-coin-2 { top: 65%; right: 8%; width: 56px; height: 56px; animation-delay: 1.5s; }
.cta-coin-3 { bottom: 10%; left: 15%; width: 32px; height: 32px; animation-delay: 3s; }

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-14px) rotate(180deg); }
}

@media (min-width: 1024px) {
    .cta-banner-inner { padding: 80px 64px; }
    .cta-mascot { width: 220px; }
}

/* ============================================
   PROVIDER LOGOS STRIP
   ============================================ */
.provider-strip { padding: var(--space-xl) 0; text-align: center; }
.provider-strip-heading {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: var(--space-lg);
}
.provider-strip-track {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.provider-tile {
    flex-shrink: 0;
    min-width: 140px;
    height: 70px;
    display: grid; place-items: center;
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    scroll-snap-align: start;
    transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}
.provider-tile:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.provider-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--foreground);
    opacity: .75;
    font-size: 1rem;
    letter-spacing: .04em;
    padding: 0 var(--space-md);
    text-align: center;
}
.provider-tile:hover .provider-name { opacity: 1; color: var(--secondary-bright); }

@media (min-width: 1024px) {
    .provider-strip-track {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
    }
    .provider-tile { min-width: 160px; }
}

/* ============================================
   USP FEATURE CARD
   ============================================ */
.usp-card {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glow);
    text-align: center;
    transition: transform .25s ease, border-color .25s ease;
}
.usp-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.usp-icon {
    width: 56px; height: 56px;
    margin: 0 auto var(--space-md);
    display: grid; place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, rgba(30,115,255,.45), rgba(20,26,51,.6) 70%);
    border: 1px solid var(--border);
    color: var(--secondary);
    font-size: 1.5rem;
}
.usp-title { font-size: 1.0625rem; margin: 0 0 8px; }
.usp-desc { font-size: .9375rem; color: var(--muted-foreground); margin: 0; }

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .usp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
    .usp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   HERO - Reusable hero section pattern
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-2xl);
    overflow: clip;
}
.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero h1 { margin-bottom: var(--space-md); }
.hero-subline {
    font-size: 1.125rem;
    color: var(--foreground);
    opacity: .92;
    margin: 0 auto var(--space-xl);
    max-width: 640px;
}
.hero-stats {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}
.hero-stat {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 20px;
    backdrop-filter: blur(10px);
}
.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-bright);
    line-height: 1;
}
.hero-stat-label { font-size: .8125rem; color: var(--muted-foreground); margin-top: 4px; }

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .85;
}

@media (min-width: 768px) {
    .hero { padding: 96px 0 var(--space-3xl); }
}
@media (min-width: 1024px) {
    .hero { padding: 120px 0 var(--space-3xl); }
}

/* Mega bonus figure used in hero */
.mega-figure {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(2.75rem, 9vw, 6rem);
    line-height: .95;
    background: linear-gradient(90deg, #F4D88A, #FFFBEA, #E8C36A, #B58A2C);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmerSlide 6s linear infinite;
    display: inline-block;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box, .callout {
    background: linear-gradient(135deg, rgba(30,115,255,.10), rgba(20,26,51,.65));
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    backdrop-filter: blur(8px);
}
.tldr-box h3 { color: var(--secondary-bright); font-size: 1.0625rem; margin: 0 0 8px; letter-spacing: .04em; text-transform: uppercase; }
.callout-warning { border-left-color: var(--accent); }
.callout-info { border-left-color: var(--primary); }

blockquote, .pull-quote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 3px solid var(--secondary);
    background: rgba(20,26,51,.45);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--foreground);
}
blockquote cite, .pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-size: .875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}
blockquote cite::before, .pull-quote cite::before { content: '- '; }

.stat-highlight {
    text-align: center;
    padding: var(--space-lg);
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.stat-highlight-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}
.stat-highlight-label { color: var(--muted-foreground); font-size: .9375rem; margin-top: 8px; }
.stat-highlight-source { font-size: .75rem; color: var(--muted-foreground); margin-top: 4px; opacity: .8; }

/* Tables */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card-translucent);
    backdrop-filter: blur(8px);
}
.table-wrapper:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}
thead { background: rgba(30,115,255,.15); }
th, td {
    padding: 14px var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: .9375rem;
}
th { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--secondary-bright); letter-spacing: .02em; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(30,115,255,.06); }
.table-row-recommended { background: rgba(232,195,106,.08); }
.table-row-recommended td:first-child { border-left: 3px solid var(--secondary); }

/* Trust badges row */
.trust-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
}
.badge-pill {
    display: inline-flex; align-items: center;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: var(--card-translucent);
    border: 1px solid var(--border);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: .03em;
}
.badge-age { border-color: var(--accent); color: var(--accent); font-weight: 800; }

/* details/summary fallback styling for general use outside FAQ */
details:not(.faq-item) {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-md);
    background: var(--card-translucent);
}
details:not(.faq-item) > summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-bright);
}

/* Comparison / pros-cons */
.proscons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}
@media (min-width: 768px) { .proscons { grid-template-columns: 1fr 1fr; } }
.proscons-card {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}
.proscons-card h3 { font-size: 1.125rem; margin-bottom: var(--space-md); }
.proscons-card ul { list-style: none; padding: 0; margin: 0; }
.proscons-card li { padding-left: 28px; position: relative; margin-bottom: 10px; color: var(--muted-foreground); font-size: .9375rem; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary-bright); font-weight: 800; }
.cons li::before { content: '✕'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* Internal hub links */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) { .hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-lg); } }
@media (min-width: 1024px) { .hub-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.hub-tile {
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: var(--foreground);
    backdrop-filter: blur(10px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column; gap: 8px;
    min-height: 160px;
}
.hub-tile:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 16px 40px -16px var(--primary-glow);
    color: var(--foreground);
}
.hub-tile-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--secondary-foreground);
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.hub-tile h3 { font-size: 1.125rem; margin: 0; }
.hub-tile p { font-size: .9375rem; color: var(--muted-foreground); margin: 0; }
.hub-tile-arrow { color: var(--secondary-bright); margin-top: auto; font-size: .875rem; font-weight: 600; letter-spacing: .04em; }

/* Editorial / SEO text block */
.seo-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.75;
}
.seo-text h2, .seo-text h3 { color: var(--foreground); margin-top: var(--space-2xl); }
.seo-text h2:first-child { margin-top: 0; }
.seo-text p { margin-bottom: var(--space-md); }
.seo-text a { color: var(--primary); text-decoration: underline; text-decoration-color: rgba(30,115,255,.4); }
.seo-text a:hover { color: var(--secondary-bright); text-decoration-color: var(--secondary); }
.seo-text ul, .seo-text ol { padding-left: 22px; margin-bottom: var(--space-md); }
.seo-text li { margin-bottom: 8px; }

@media (min-width: 1024px) {
    .seo-text-2col { columns: 2; column-gap: 48px; }
    .seo-text-2col h2, .seo-text-2col h3, .seo-text-2col blockquote, .seo-text-2col table { column-span: all; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: var(--space-4xl);
    background: linear-gradient(180deg, transparent, rgba(7,10,26,.85));
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.4fr; padding: 0 var(--space-lg); }
}
.footer-blurb { font-size: .9375rem; color: var(--muted-foreground); margin: var(--space-md) 0; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-md); }
.footer-heading {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--secondary);
    margin: 0 0 var(--space-md);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted-foreground); font-size: .9375rem; }
.footer-links a:hover { color: var(--secondary-bright); }
.payment-logos {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.payment-logos li {
    display: inline-flex; align-items: center;
    padding: 6px 12px;
    background: rgba(20,26,51,.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .8125rem;
    color: var(--foreground);
    font-weight: 600;
    letter-spacing: .03em;
}

.footer-bottom {
    max-width: var(--container);
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg) var(--space-md) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.copyright { margin: 0 0 8px; font-size: .875rem; color: var(--muted-foreground); }
.legal { margin: 0; font-size: .8125rem; color: var(--muted-foreground); max-width: 720px; margin: 0 auto; }
.legal a { color: var(--primary); }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .gold-shimmer, .mega-figure { animation: none; }
    .cta-coin { animation: none; }
}

/* ============================================
   WIN PAGE STUB - Redirect placeholder
   ============================================ */
.win-stub {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    background: var(--background);
    background-image: var(--grad-radial);
    position: relative;
    overflow: hidden;
}
.win-stub::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 50% 50%, rgba(30,115,255,.18), transparent 55%),
        radial-gradient(circle at 30% 80%, rgba(99,70,220,.16), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(232,195,106,.10), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.win-stub-inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.win-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    margin-bottom: var(--space-xl);
}
.win-logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--grad-gold);
    object-fit: cover;
    box-shadow: 0 0 60px var(--secondary-glow), inset 0 1px 0 rgba(255,255,255,.4);
    position: relative;
    z-index: 2;
    animation: winLogoFloat 3.5s ease-in-out infinite;
}
.win-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    opacity: 0;
    animation: winPulse 2.4s ease-out infinite;
    z-index: 1;
}
.win-pulse-ring-2 { animation-delay: 1.2s; border-color: var(--primary); }

@keyframes winLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes winPulse {
    0% { transform: scale(.85); opacity: .85; }
    100% { transform: scale(1.6); opacity: 0; }
}

.win-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    letter-spacing: .04em;
    margin: 0 0 var(--space-sm);
    line-height: 1.1;
}
.win-message {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.0625rem, 2.4vw, 1.375rem);
    color: var(--foreground);
    opacity: .92;
    margin: 0 0 var(--space-xl);
    line-height: 1.4;
}

.win-loader {
    display: inline-flex;
    gap: 10px;
    margin-bottom: var(--space-xl);
}
.win-loader span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grad-gold);
    box-shadow: 0 0 12px var(--secondary-glow);
    animation: winDot 1.2s ease-in-out infinite;
}
.win-loader span:nth-child(2) { animation-delay: .15s; }
.win-loader span:nth-child(3) { animation-delay: .3s; }

@keyframes winDot {
    0%, 80%, 100% { transform: scale(.6); opacity: .4; }
    40% { transform: scale(1.1); opacity: 1; }
}

.win-microcopy {
    font-size: .9375rem;
    color: var(--muted-foreground);
    margin: 0 0 var(--space-md);
    max-width: 420px;
}
.win-legal {
    font-size: .75rem;
    color: var(--muted-foreground);
    opacity: .7;
    letter-spacing: .05em;
    margin: 0;
}

.win-coin {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #F4D88A, #B58A2C 70%);
    box-shadow: 0 0 24px var(--secondary-glow);
    pointer-events: none;
    z-index: 0;
    animation: winCoinFloat 6s ease-in-out infinite;
}
.win-coin-1 { width: 28px; height: 28px; top: 12%; left: 8%; animation-delay: 0s; }
.win-coin-2 { width: 38px; height: 38px; top: 22%; right: 10%; animation-delay: 1s; opacity: .8; }
.win-coin-3 { width: 22px; height: 22px; bottom: 18%; left: 14%; animation-delay: 2.2s; opacity: .7; }
.win-coin-4 { width: 32px; height: 32px; bottom: 12%; right: 12%; animation-delay: 3.2s; }
.win-coin-5 { width: 18px; height: 18px; top: 50%; left: 4%; animation-delay: 4.2s; opacity: .6; }

@media (min-width: 768px) {
    .win-coin-1 { width: 38px; height: 38px; top: 14%; left: 12%; }
    .win-coin-2 { width: 50px; height: 50px; top: 18%; right: 14%; }
    .win-coin-3 { width: 30px; height: 30px; bottom: 20%; left: 16%; }
    .win-coin-4 { width: 44px; height: 44px; bottom: 14%; right: 16%; }
    .win-coin-5 { width: 24px; height: 24px; top: 50%; left: 6%; }
}

@keyframes winCoinFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-18px) rotate(180deg); }
}

@media (prefers-reduced-motion: reduce) {
    .win-logo, .win-pulse-ring, .win-loader span, .win-coin { animation: none; }
}

/* ============================================
   HOMEPAGE HERO ENHANCEMENTS
   ============================================ */
.hero-home { padding-bottom: var(--space-2xl); }
.hero-home .hero-inner { max-width: 920px; }
.hero-home h1 { font-size: clamp(2rem, 4.6vw + 1rem, 4rem); }
.hero-home .mega-figure { margin: var(--space-md) 0 var(--space-lg); }
.hero-home .hero-subline { max-width: 720px; margin-left: auto; margin-right: auto; }

.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-host {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -48%);
    width: min(120%, 1200px);
    max-width: none;
    height: auto;
    opacity: .35;
    mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
}
@media (min-width: 768px) {
    .hero-host { opacity: .4; }
}
@media (min-width: 1024px) {
    .hero-host { opacity: .45; transform: translate(-50%, -50%); }
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
}
.hero-glow-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(30,115,255,.55), transparent 70%);
    top: -10%; left: -10%;
}
.hero-glow-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(232,195,106,.4), transparent 70%);
    bottom: -10%; right: -10%;
}
.hero-coin {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #F4D88A, #B58A2C 70%);
    box-shadow: 0 0 24px var(--secondary-glow);
    opacity: .7;
    animation: floatCoin 7s ease-in-out infinite;
}
.hero-coin-a { width: 28px; height: 28px; top: 22%; left: 12%; animation-delay: 0s; }
.hero-coin-b { width: 36px; height: 36px; top: 35%; right: 10%; animation-delay: 1.2s; }
.hero-coin-c { width: 22px; height: 22px; bottom: 18%; left: 18%; animation-delay: 2.4s; }
.hero-coin-d { width: 30px; height: 30px; bottom: 25%; right: 15%; animation-delay: 3.6s; }

@media (min-width: 768px) {
    .hero-coin-a { width: 40px; height: 40px; top: 18%; left: 8%; }
    .hero-coin-b { width: 52px; height: 52px; top: 28%; right: 8%; }
    .hero-coin-c { width: 32px; height: 32px; bottom: 14%; left: 12%; }
    .hero-coin-d { width: 44px; height: 44px; bottom: 22%; right: 10%; }
}

/* Live teaser grid override - 2x2 on desktop sidebar */
.live-teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .live-teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.section-tight { padding: var(--space-2xl) 0; }
@media (min-width: 1024px) { .section-tight { padding: var(--space-3xl) 0; } }

/* ============================================
   VIP LADDER
   ============================================ */
.vip-ladder {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column;
    gap: var(--space-md);
    counter-reset: vip;
    position: relative;
}
.vip-ladder::before {
    content: '';
    position: absolute;
    left: 28px; top: 20px; bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--secondary) 15%, var(--secondary) 85%, transparent);
    opacity: .35;
}
.vip-rung {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--card-translucent);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.vip-rung:hover {
    transform: translateX(4px);
    border-color: var(--border-strong);
    box-shadow: 0 12px 32px -16px var(--primary-glow);
}
.vip-rung-top {
    background: linear-gradient(135deg, rgba(232,195,106,.18), rgba(20,26,51,.7));
    border-color: var(--border-strong);
    box-shadow: 0 0 0 1px var(--secondary-glow), 0 14px 40px -16px var(--secondary-glow);
}
.vip-level {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--secondary-foreground);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: .8125rem;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 0 18px var(--secondary-glow);
}
.vip-rung-body h3 { font-size: 1.0625rem; margin: 0 0 4px; }
.vip-rung-body p { font-size: .9375rem; color: var(--muted-foreground); margin: 0; }
.vip-icon {
    font-size: 1.75rem;
    width: 44px; text-align: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .vip-rung { padding: var(--space-lg) var(--space-xl); grid-template-columns: 72px 1fr auto; gap: var(--space-lg); }
    .vip-level { width: 72px; height: 72px; font-size: .9375rem; }
    .vip-icon { font-size: 2rem; width: 56px; }
}

/* ============================================
   PAYMENT GRID
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}
@media (min-width: 600px) { .payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); } }
@media (min-width: 1024px) { .payment-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.payment-tile {
    padding: var(--space-md);
    text-align: center;
    transition: transform .25s ease, border-color .25s ease;
    display: flex; flex-direction: column; gap: 6px;
    align-items: center; justify-content: center;
    min-height: 96px;
}
.payment-tile:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
}
.payment-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--foreground);
    letter-spacing: .02em;
}
.payment-meta {
    font-size: .75rem;
    color: var(--muted-foreground);
    letter-spacing: .03em;
}

/* ============================================
   FAQ PAGE - hero + mascot peeks
   ============================================ */
.faq-hero { padding: var(--space-3xl) 0 var(--space-2xl); }
.faq-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}
.faq-hero-text { max-width: 760px; }
.faq-hero-mascot {
    width: clamp(180px, 40vw, 280px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 50% 35%, rgba(30,115,255,.45), rgba(20,26,51,.7) 70%);
    border: 1px solid var(--border);
    box-shadow: 0 0 0 4px rgba(232,195,106,.15), 0 18px 40px -12px var(--primary-glow);
    flex-shrink: 0;
}
.faq-hero-mascot img {
    width: 130%; height: 130%;
    object-fit: cover;
    object-position: center 20%;
    transform: translate(-12%, -10%);
}

@media (min-width: 1024px) {
    .faq-hero-inner {
        flex-direction: row;
        text-align: left;
        gap: var(--space-2xl);
        justify-content: center;
        align-items: center;
    }
    .faq-hero-text { flex: 1; max-width: 700px; }
}

.faq-block { position: relative; }
.mascot-peek {
    display: none;
    position: absolute;
    top: 24px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
    opacity: .5;
    background: radial-gradient(circle at 50% 35%, rgba(30,115,255,.4), rgba(20,26,51,.7) 70%);
    border: 1px solid var(--border);
    z-index: 1;
}
.mascot-peek img {
    width: 130%; height: 130%;
    object-fit: cover;
    object-position: center 20%;
    transform: translate(-12%, -8%);
}
.mascot-peek-right { right: -90px; }
.mascot-peek-left { left: -90px; }

@media (min-width: 1024px) {
    .mascot-peek { display: block; }
    .mascot-peek-right { right: -60px; }
    .mascot-peek-left { left: -60px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--secondary-bright); }
.text-muted { color: var(--muted-foreground); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.two-col {
    display: grid; grid-template-columns: 1fr; gap: var(--space-xl);
}
@media (min-width: 1024px) {
    .two-col { grid-template-columns: 1.1fr .9fr; gap: var(--space-2xl); align-items: center; }
    .two-col-reverse { grid-template-columns: .9fr 1.1fr; }
}

/* Category tabs */
.tabs-row {
    display: flex; gap: 8px;
    overflow-x: auto;
    padding: 4px 0 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
}
.tabs-row::-webkit-scrollbar { display: none; }
.tab-pill {
    flex-shrink: 0;
    display: inline-flex; align-items: center;
    padding: 10px 18px;
    min-height: 44px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--card-translucent);
    color: var(--foreground);
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    transition: all .2s ease;
}
.tab-pill:hover { border-color: var(--border-strong); color: var(--secondary-bright); }
.tab-pill.is-active {
    background: var(--grad-gold);
    color: var(--secondary-foreground);
    border-color: transparent;
}
@media (min-width: 1024px) { .tabs-row { justify-content: center; } }

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 4px;
}