/* ============================================
   BIZZO CASINO - DESIGN SYSTEM
   Purple-gold neon arcade aesthetic
   Mobile-first, dark theme only (brand-native)
   ============================================ */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    margin: 0;
    font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse 60% 40% at 10% 0%, rgba(157, 78, 221, 0.18), transparent 60%),
        radial-gradient(ellipse 70% 50% at 90% 20%, rgba(255, 46, 154, 0.12), transparent 65%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 200, 87, 0.08), transparent 70%);
    background-attachment: fixed;
    -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 { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select, button { font: inherit; max-width: 100%; }
section { overflow: clip; position: relative; }

ul, ol { padding-left: 1.2em; }

/* ============================================
   TYPOGRAPHY
   Bricolage Grotesque headings / Outfit body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Bricolage Grotesque", "Outfit", sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--foreground);
}
h1 { font-size: clamp(30px, 6vw, 44px); font-weight: 800; }
h2 { font-size: clamp(26px, 4.5vw, 34px); font-weight: 700; }
h3 { font-size: clamp(20px, 3.2vw, 24px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { margin: 0 0 24px; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 200ms ease, text-shadow 200ms ease;
}
a:hover, a:focus-visible { color: #ffd98a; text-shadow: 0 0 12px rgba(255, 200, 87, 0.5); }

main p a, main li a {
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
}

small, .caption { font-size: 14px; font-weight: 500; }

::selection { background: var(--primary); color: var(--primary-foreground); }

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

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

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1024px) { .container { padding: 0 32px; } }

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

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

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 6px 14px;
    border: 1px solid rgba(255, 200, 87, 0.35);
    border-radius: 100px;
    margin-bottom: 16px;
    background: rgba(255, 200, 87, 0.06);
}

/* Full-bleed sections with diagonal dividers */
.section-bleed {
    background: linear-gradient(135deg, #2a1340 0%, #4c1d95 60%, #2a1340 100%);
    position: relative;
    padding: 72px 0;
}
.section-bleed::before,
.section-bleed::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    box-shadow: var(--gold-glow);
}
.section-bleed::before { top: 0; transform: skewY(-1.5deg); transform-origin: left; }
.section-bleed::after { bottom: 0; transform: skewY(-1.5deg); transform-origin: right; }

/* ============================================
   HEADER - Fixed translucent with blurred purple
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(26, 11, 38, 0.88);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
    .site-header {
        background: rgba(26, 11, 38, 0.72);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
    }
}
.header-inner {
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
@media (min-width: 1024px) { .header-inner { padding: 0 32px; } }

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.brand:hover { color: var(--foreground); text-shadow: none; }
.brand .logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: var(--purple-glow);
}
.brand-name-accent { color: var(--secondary); }

/* Main nav desktop */
.main-nav { display: none; }
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}
.nav-list a {
    color: var(--foreground);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 4px;
    position: relative;
}
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 280ms ease-out;
    box-shadow: var(--gold-glow);
}
.nav-list a:hover::after, .nav-list a:focus-visible::after { transform: scaleX(1); }
.nav-list a:hover { color: var(--secondary); text-shadow: none; }

.nav-cta-group { display: flex; gap: 12px; align-items: center; }

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 36px;
    }
}

/* Mobile menu toggle (hamburger) */
.menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--muted);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: background 200ms ease, border-color 200ms ease;
}
.menu-toggle:hover { border-color: var(--secondary); }
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 280ms ease, opacity 280ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--secondary); }
.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); background: var(--secondary); }

@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        background-image:
            radial-gradient(circle at 20% 10%, rgba(157, 78, 221, 0.25), transparent 50%),
            radial-gradient(circle at 80% 90%, rgba(255, 46, 154, 0.18), transparent 55%);
        z-index: 999;
        display: none;
        flex-direction: column;
        padding: 28px 24px 40px;
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }
    .main-nav.is-open {
        display: flex;
        animation: drawerFadeIn 280ms ease-out;
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .main-nav .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 20px;
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 600;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
    }
    .main-nav .nav-cta-group {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin-top: 28px;
    }
    .main-nav .nav-cta-group .btn { width: 100%; }
}
@keyframes drawerFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   .btn-gold - primary glowing gold CTA
   .btn-ghost - outlined secondary
   .btn-block - full width
   .btn-lg - hero sized
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 280ms ease, background 220ms ease, color 220ms ease;
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, #ffd98a 0%, #ffc857 40%, #e0a32c 100%);
    color: #1a0b26;
    box-shadow: 0 0 0 rgba(255, 200, 87, 0), 0 8px 28px rgba(255, 200, 87, 0.28);
}
.btn-gold:hover,
.btn-gold:focus-visible {
    color: #1a0b26;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255, 200, 87, 0.7), 0 12px 36px rgba(255, 200, 87, 0.35);
}
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
    color: var(--secondary);
    border-color: var(--secondary);
    text-shadow: none;
    box-shadow: var(--gold-glow);
}
.btn-lg { min-height: 56px; padding: 16px 32px; font-size: 18px; }
.btn-block { width: 100%; }

/* Sticky bottom mobile CTA */
.sticky-cta {
    position: fixed;
    left: 16px; right: 16px;
    bottom: 16px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 20px;
    border-radius: 100px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #1a0b26;
    background: linear-gradient(135deg, #ffd98a 0%, #ffc857 45%, #e0a32c 100%);
    box-shadow: 0 12px 40px rgba(255, 200, 87, 0.45), 0 0 0 4px rgba(255, 200, 87, 0.15);
    text-decoration: none;
    animation: stickyPulse 2.6s ease-in-out infinite;
}
.sticky-cta:hover { color: #1a0b26; text-shadow: none; }
@keyframes stickyPulse {
    0%, 100% { box-shadow: 0 12px 40px rgba(255, 200, 87, 0.45), 0 0 0 4px rgba(255, 200, 87, 0.12); }
    50% { box-shadow: 0 12px 48px rgba(255, 200, 87, 0.6), 0 0 0 6px rgba(255, 200, 87, 0.22); }
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ============================================
   HERO - Three.js canvas stage
   ============================================ */
.hero {
    position: relative;
    padding: 40px 0 56px;
    overflow: clip;
}
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px;
    align-items: center;
}
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
}
.hero-copy .lede {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
    max-width: 560px;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.hero-mascot {
    position: relative;
    text-align: center;
}
.hero-mascot img {
    max-width: 420px;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(157, 78, 221, 0.45));
    animation: bobFloat 6s ease-in-out infinite;
}
@keyframes bobFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@media (min-width: 1024px) {
    .hero { padding: 72px 0 96px; }
    .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

/* Oversized outlined numeral that breaks container */
.big-numeral {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(84px, 18vw, 200px);
    font-weight: 800;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary);
    text-stroke: 2px var(--secondary);
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(255, 200, 87, 0.35);
    margin: 0 0 16px;
}

/* Hero trust row */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: rgba(46, 26, 71, 0.7);
    border: 1px solid var(--border);
    border-radius: 100px;
}
.trust-chip-age {
    color: var(--accent);
    border-color: rgba(255, 46, 154, 0.45);
    background: rgba(255, 46, 154, 0.08);
}

/* ============================================
   HEX NEON FRAME - used on game cards
   ============================================ */
.hex-frame {
    position: relative;
    padding: 2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.6), rgba(255, 200, 87, 0.55), rgba(157, 78, 221, 0.6));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 24px rgba(157, 78, 221, 0.25);
}

/* ============================================
   GAME CARD
   Hex purple-gold neon frame with game image
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
@media (min-width: 768px) { .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
@media (min-width: 1024px) { .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; } }

.game-card {
    position: relative;
    transition: transform 280ms ease;
}
.game-card-frame {
    position: relative;
    padding: 14px;
    background: linear-gradient(180deg, #2a1340 0%, #1a0b26 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
@media (min-width: 1024px) { .game-card-frame { padding: 20px; } }
.game-card:hover .game-card-frame {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 18px 44px rgba(157, 78, 221, 0.4), 0 0 32px rgba(255, 200, 87, 0.25);
}
.game-card-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin-bottom: 14px;
    background: #120820;
}
.game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}
.game-card:hover .game-card-media img { transform: scale(1.05); }
.game-badge {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a0b26;
    background: linear-gradient(135deg, #ff2e9a, #ffc857);
    box-shadow: 0 0 14px rgba(255, 46, 154, 0.6);
}
.game-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.game-card-title {
    font-size: 18px;
    margin: 0;
    color: var(--foreground);
}
.game-card-provider {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 12px;
}
.game-card .btn { margin-top: auto; }

/* ============================================
   BONUS CARD
   Electric violet with oversized gold numerals
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bonus-grid.bonus-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.bonus-card {
    position: relative;
    padding: 56px 24px 28px;
    margin-top: 40px;
    background: linear-gradient(160deg, #3a1560 0%, #5d2796 55%, #3a1560 100%);
    border: 2px solid rgba(255, 200, 87, 0.55);
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 40px rgba(76, 29, 149, 0.45), var(--gold-glow);
    overflow: visible;
    isolation: isolate;
    animation: bonusPulse 3.2s ease-in-out infinite;
}
@media (min-width: 1024px) { .bonus-card { padding: 72px 32px 32px; } }
@keyframes bonusPulse {
    0%, 100% { box-shadow: 0 14px 40px rgba(76, 29, 149, 0.45), 0 0 22px rgba(255, 200, 87, 0.4); }
    50% { box-shadow: 0 14px 48px rgba(76, 29, 149, 0.6), 0 0 36px rgba(255, 200, 87, 0.7); }
}
.bonus-numeral {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(56px, 12vw, 96px);
    font-weight: 800;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 2px #ffc857;
    text-stroke: 2px #ffc857;
    text-shadow: 0 0 24px rgba(255, 200, 87, 0.6);
    white-space: nowrap;
    letter-spacing: -0.03em;
}
.bonus-unit {
    display: inline-block;
    font-size: 0.3em;
    -webkit-text-stroke: 1.5px #ffc857;
    margin-left: 8px;
    vertical-align: middle;
}
.bonus-body {
    text-align: center;
    position: relative;
    z-index: 2;
}
.bonus-headline {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--foreground);
}
.bonus-description {
    color: #d8c7ec;
    font-size: 15px;
    margin-bottom: 22px;
}
.bonus-mascot {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, #c98a4f 0%, #7a3e1f 60%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 87, 0.3), transparent 70%);
    box-shadow: 0 0 18px rgba(255, 200, 87, 0.4);
    opacity: 0.7;
    pointer-events: none;
}
.bonus-card-highlight {
    border-color: var(--accent);
    box-shadow: 0 14px 40px rgba(76, 29, 149, 0.5), var(--accent-glow);
}

/* ============================================
   FAQ ACCORDION
   Expandable Q&A with FAQPage schema
   ============================================ */
.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.faq-item {
    border-bottom: 1px solid var(--border);
    transition: background 220ms ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background: rgba(157, 78, 221, 0.08); }
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    min-height: 48px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--secondary); }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    position: relative;
    border-radius: 50%;
    border: 1.5px solid var(--secondary);
    transition: transform 280ms ease, background 280ms ease;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 2px;
    background: var(--secondary);
    transform: translate(-50%, -50%);
    transition: transform 280ms ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: rgba(255, 200, 87, 0.1); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
    padding: 0 24px 22px;
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.7;
    animation: faqFade 280ms ease-out;
}
.faq-answer p:last-child { margin-bottom: 0; }
@keyframes faqFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   INFO TABLE
   Structured data table, collapses to cards on mobile
   ============================================ */
.info-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 24px rgba(157, 78, 221, 0.12);
    background: var(--card);
    margin: 28px 0;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.info-table caption {
    text-align: left;
    padding: 20px 20px 12px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--foreground);
    caption-side: top;
}
.info-table thead {
    background: linear-gradient(135deg, #3a1560, #5d2796);
}
.info-table th {
    text-align: left;
    padding: 18px 20px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
}
.info-table td {
    padding: 18px 20px;
    border-top: 1px solid var(--border);
    color: var(--foreground);
    vertical-align: top;
}
.info-table tbody tr:nth-child(odd) { background: rgba(46, 26, 71, 0.35); }
.info-table tbody tr:hover { background: rgba(157, 78, 221, 0.1); }
.info-table strong, .info-table b { color: var(--secondary); font-weight: 700; }

@media (max-width: 767px) {
    .info-table-wrapper { border: none; box-shadow: none; background: transparent; }
    .info-table, .info-table thead, .info-table tbody, .info-table tr, .info-table th, .info-table td {
        display: block;
        width: 100%;
    }
    .info-table caption { padding: 0 0 12px; }
    .info-table thead { display: none; }
    .info-table tr {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        margin-bottom: 14px;
        padding: 8px 4px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    }
    .info-table td {
        padding: 10px 16px;
        border-top: none;
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: baseline;
    }
    .info-table td::before {
        content: attr(data-label);
        font-family: "Bricolage Grotesque", sans-serif;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--secondary);
        flex-shrink: 0;
    }
}

/* ============================================
   CTA BANNER - Full-width conversion section
   ============================================ */
.cta-banner {
    position: relative;
    padding: 64px 0;
    margin: 56px 0;
    background: linear-gradient(135deg, #3a1560 0%, #5d2796 50%, #2a1340 100%);
    overflow: clip;
}
.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), var(--secondary), transparent);
    box-shadow: var(--gold-glow);
}
.cta-banner::before { top: 0; transform: skewY(-1.5deg); }
.cta-banner::after { bottom: 0; transform: skewY(-1.5deg); }
.cta-banner-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 1024px) {
    .cta-banner-inner { grid-template-columns: 1fr 1.2fr; padding: 0 32px; }
    .cta-banner { padding: 96px 0; }
}
.cta-banner-mascot {
    text-align: center;
    min-height: 160px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 200, 87, 0.2), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-banner-mascot img {
    max-width: 320px;
    filter: drop-shadow(0 20px 40px rgba(157, 78, 221, 0.5));
    animation: bobFloat 6s ease-in-out infinite;
}
.cta-banner-copy { text-align: center; }
@media (min-width: 1024px) { .cta-banner-copy { text-align: left; } }
.cta-banner-headline {
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 14px;
}
.cta-banner-sub {
    color: #d8c7ec;
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 520px;
}
@media (min-width: 1024px) { .cta-banner-sub { margin-left: 0; margin-right: 0; } }
.cta-banner-copy .btn { min-width: 220px; }
@media (max-width: 767px) { .cta-banner-copy .btn { width: 100%; } }
.cta-micro {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   PROVIDER LOGO GRID
   ============================================ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
@media (min-width: 768px) { .provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; } }
@media (min-width: 1024px) { .provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; } }

.provider-tile {
    aspect-ratio: 2 / 1;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    filter: grayscale(0.6) brightness(0.9);
    transition: filter 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}
.provider-tile:hover {
    filter: grayscale(0) brightness(1);
    border-color: var(--secondary);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}
.provider-tile img { max-height: 56px; width: auto; object-fit: contain; }
.provider-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--muted-foreground);
    text-align: center;
    letter-spacing: 0.02em;
}
.provider-tile:hover .provider-name { color: var(--secondary); }

/* ============================================
   TIER / BENEFIT / FEATURE GENERIC GRID
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }

.feature-card {
    padding: 24px 22px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 280ms ease;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 14px 36px rgba(157, 78, 221, 0.3), var(--gold-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--secondary); }
.feature-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.4), rgba(255, 200, 87, 0.25));
    margin-bottom: 14px;
    font-size: 24px;
}

/* ============================================
   ENGAGEMENT PATTERNS
   Summary, callouts, stats, pull quotes, details
   ============================================ */

/* TL;DR summary */
.tldr {
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.18), rgba(255, 200, 87, 0.08));
    border: 1px solid var(--secondary);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    margin: 28px 0;
    box-shadow: var(--gold-glow);
}
.tldr h3, .tldr strong:first-child {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 10px;
    display: block;
}

/* Callout */
.callout {
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    margin: 24px 0;
}
.callout-tip { border-left-color: var(--secondary); background: rgba(255, 200, 87, 0.06); }
.callout-warning { border-left-color: var(--accent); background: rgba(255, 46, 154, 0.06); }
.callout h4 { margin: 0 0 8px; color: var(--secondary); font-size: 16px; }

/* Stat highlight */
.stat-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 28px 0;
}
@media (min-width: 640px) { .stat-highlight { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.stat-block {
    padding: 22px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.stat-block .number {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(255, 200, 87, 0.4);
    margin-bottom: 6px;
}
.stat-block .label {
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* Pull quote / blockquote */
blockquote, .pull-quote {
    margin: 32px 0;
    padding: 28px 32px;
    border-left: 4px solid var(--secondary);
    background: rgba(157, 78, 221, 0.1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 500;
    color: var(--foreground);
    font-style: italic;
    position: relative;
}
blockquote cite, .pull-quote cite {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary);
}

/* Details/summary standalone (outside faq) */
details.detail-box {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    margin: 18px 0;
    background: var(--card);
}
details.detail-box summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
}
details.detail-box[open] > *:not(summary) { padding: 0 20px 20px; }

/* Comparison / recommended table highlight */
.info-table .recommended {
    background: linear-gradient(180deg, rgba(255, 200, 87, 0.14), rgba(255, 200, 87, 0.04)) !important;
    border-left: 3px solid var(--secondary);
}

/* Inline lists in SEO content */
.prose ul, .prose ol {
    margin: 0 0 24px;
    padding-left: 24px;
}
.prose li { margin-bottom: 10px; }
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 32px; color: var(--secondary); }
.prose {
    max-width: 840px;
    margin: 0 auto;
}
.prose p, .prose li { font-size: 17px; line-height: 1.75; }

/* Answer capsule - first paragraph after each H2 */
.answer-capsule {
    padding: 20px 24px;
    background: rgba(157, 78, 221, 0.12);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    font-size: 17px;
    margin: 16px 0 24px;
}

/* Split / two-column */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 48px; } }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.mascot-frame {
    position: relative;
    padding: 20px;
    border-radius: var(--radius-xl);
    background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.35), transparent 70%);
}
.mascot-frame img {
    margin: 0 auto;
    max-width: 420px;
    filter: drop-shadow(0 24px 50px rgba(157, 78, 221, 0.4));
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #120820;
    border-top: 1px solid var(--border);
    padding: 56px 0 20px;
    margin-top: 40px;
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: -5%; right: -5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
    box-shadow: var(--purple-glow);
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        padding: 0 32px 48px;
        gap: 48px;
    }
}
.footer-col h4,
.footer-col .footer-col-title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin: 0 0 18px;
    font-family: "Bricolage Grotesque", "Outfit", sans-serif;
    line-height: 1.15;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul a {
    color: var(--muted-foreground);
    font-size: 15px;
}
.footer-col ul a:hover { color: var(--secondary); text-shadow: none; }
.footer-tag {
    color: var(--muted-foreground);
    font-size: 15px;
    margin: 16px 0 20px;
    max-width: 380px;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pay-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px !important;
}
.pay-logos li span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-align: center;
    min-height: 40px;
}
.responsible {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 14px;
    line-height: 1.5;
}
.footer-base {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-base p {
    color: var(--muted-foreground);
    font-size: 14px;
    margin: 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
    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; }
    .hero-mascot img, .cta-banner-mascot img, .bonus-card, .sticky-cta { animation: none; }
    html { scroll-behavior: auto; }
}

/* Pad main bottom on mobile to accommodate sticky CTA */
@media (max-width: 1023px) {
    main { padding-bottom: 90px; }
}

/* ============================================
   CATEGORY TABS (games.html)
   ============================================ */
.cat-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 640px) { .cat-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .cat-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }

.cat-tab {
    position: relative;
    padding: 26px 22px;
    background: linear-gradient(160deg, #2a1340 0%, #1a0b26 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
    overflow: hidden;
}
.cat-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 280ms ease;
    pointer-events: none;
}
.cat-tab:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 16px 40px rgba(157, 78, 221, 0.35), var(--gold-glow);
}
.cat-tab:hover::before { opacity: 1; }
.cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.45), rgba(255, 200, 87, 0.3));
    box-shadow: 0 0 22px rgba(157, 78, 221, 0.4);
    font-size: 28px;
    margin-bottom: 16px;
}
.cat-tab h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--foreground);
}
.cat-tab p {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary);
    min-height: 44px;
}
.cat-link:hover { color: #ffd98a; }

/* ============================================
   SPIN REDIRECT PAGE
   ============================================ */
.redirect-stage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(157, 78, 221, 0.3), transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 46, 154, 0.2), transparent 65%),
        var(--background);
}
.redirect-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--foreground);
}
.redirect-logo img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: var(--purple-glow);
}
.coin-loader {
    width: 88px;
    height: 88px;
    margin: 0 auto 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd98a, #ffc857 40%, #b8860b);
    box-shadow: 0 0 40px rgba(255, 200, 87, 0.7), inset -8px -8px 20px rgba(184, 134, 11, 0.5);
    animation: coinSpin 1.4s linear infinite;
    position: relative;
}
.coin-loader::before {
    content: "B";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #5d2796;
}
@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.redirect-stage h1 {
    font-size: clamp(26px, 5vw, 36px);
    margin-bottom: 14px;
}
.redirect-stage p {
    color: var(--muted-foreground);
    font-size: 17px;
    max-width: 480px;
}
.redirect-stage main,
main.redirect-stage { padding-top: 0; padding-bottom: 0; }
.redirect-mascot {
    max-width: 220px;
    width: 60%;
    height: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 24px 50px rgba(157, 78, 221, 0.5));
    animation: bobFloat 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .redirect-mascot, .coin-loader { animation: none; }
}