/* ============================================
   BIZZO CASINO - COMIC SUPERHERO DESIGN SYSTEM
   Marvel meets casino aesthetic. Mobile-first.
   ============================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: "Nunito", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(91,33,182,0.05) 0, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245,184,0,0.06) 0, transparent 40%);
    min-height: 100vh;
    overflow-x: hidden;
}

img, video, iframe, 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 { max-width: 100%; }
section { overflow: clip; }

.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--primary); color: #fff;
    padding: 12px 20px; z-index: 9999;
    font-weight: 800;
}
.skip-link:focus { top: 0; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   TYPOGRAPHY
   Bangers for comic headlines, Nunito for body
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: "Bangers", "Impact", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin: 0 0 16px;
    color: var(--foreground);
    text-transform: uppercase;
    -webkit-text-stroke: 1px var(--foreground);
}

h1 { font-size: clamp(38px, 9vw, 72px); }
h2 { font-size: clamp(30px, 6vw, 52px); }
h3 { font-size: clamp(22px, 4vw, 34px); }
h4 { font-size: clamp(18px, 3vw, 24px); -webkit-text-stroke: 0.5px var(--foreground); }

p { margin: 0 0 16px; max-width: 72ch; }
strong, b { font-weight: 800; }

a { color: var(--primary); font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--secondary-dark); }

ul, ol { padding-left: 24px; margin: 0 0 16px; }
li { margin-bottom: 8px; }

/* ============================================
   LAYOUT WRAPPERS
   ============================================ */
.comic-page { max-width: 1240px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .comic-page { padding: 0 24px; } }

main { padding-top: var(--header-height); }
section { padding: 56px 0; }
@media (min-width: 1024px) { section { padding: 80px 0; } }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { transform: rotate(-1deg); display: inline-block; }
.section-header p { margin: 0 auto; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: var(--primary);
    border-bottom: 4px solid var(--foreground);
    z-index: 1000;
    box-shadow: 0 4px 0 0 var(--foreground), 0 8px 24px rgba(0,0,0,0.15);
}
.header-inner {
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
@media (min-width: 768px) { .header-inner { padding: 0 24px; } }

.logo-link {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: #fff;
    font-family: "Bangers", sans-serif;
    font-size: 24px;
    -webkit-text-stroke: 1px var(--foreground);
}
.logo { height: 48px; width: 48px; border-radius: 50%; border: 3px solid var(--foreground); background: var(--secondary); }
.logo-text { line-height: 1; letter-spacing: 0.05em; }
.logo-accent { color: var(--secondary); }
@media (max-width: 520px) { .logo-text { display: none; } }

.main-nav {
    display: none;
    align-items: center;
    gap: 28px;
}
.nav-list {
    display: flex; list-style: none; margin: 0; padding: 0; gap: 24px;
}
.nav-list a {
    color: #fff; text-decoration: none;
    font-family: "Bangers", sans-serif;
    font-size: 22px; letter-spacing: 0.05em;
    -webkit-text-stroke: 0.5px var(--foreground);
    transition: color 220ms ease-out;
}
.nav-list a:hover { color: var(--secondary); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

@media (min-width: 1024px) {
    .main-nav { display: flex; }
}

.menu-toggle {
    display: flex; flex-direction: column;
    justify-content: space-between;
    width: 44px; height: 44px;
    padding: 10px 8px;
    background: var(--secondary);
    border: 3px solid var(--foreground);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: var(--shadow-comic);
}
.menu-toggle span {
    display: block; width: 100%; height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 220ms ease, opacity 220ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile nav drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        position: fixed;
        top: var(--header-height); left: 0; right: 0; bottom: 0;
        background: var(--background);
        border-top: 4px solid var(--foreground);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 32px 20px;
        gap: 24px;
        overflow-y: auto;
        z-index: 999;
    }
    .main-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .nav-list a {
        color: var(--foreground);
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 12px 16px;
        font-size: 32px;
        border: 3px solid var(--foreground);
        border-radius: 12px;
        background: var(--card);
        box-shadow: var(--shadow-comic);
    }
    .nav-cta {
        flex-direction: column;
        gap: 14px;
        margin-top: auto;
    }
    .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================
   BUTTONS
   Comic-style CTAs with thick outline and shadows
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: "Bangers", sans-serif;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 3px solid var(--foreground);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
    box-shadow: var(--shadow-comic);
    -webkit-text-stroke: 0.5px var(--foreground);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--foreground); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 var(--foreground); }

.btn-primary { background: var(--secondary); color: var(--foreground); }
.btn-gold { background: var(--secondary); color: var(--foreground); }
.btn-ghost { background: transparent; color: #fff; border-color: #fff; box-shadow: 3px 3px 0 0 var(--foreground); }
.btn-ghost:hover { background: #fff; color: var(--primary); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-sm { min-height: 40px; padding: 8px 16px; font-size: 16px; }
.btn-xl { min-height: 64px; padding: 18px 36px; font-size: 26px; }

@keyframes pulse-halo {
    0%, 100% { box-shadow: var(--shadow-comic), 0 0 0 0 rgba(245,184,0,0.7); }
    50% { box-shadow: var(--shadow-comic), 0 0 0 14px rgba(245,184,0,0); }
}
.btn-pulse { animation: pulse-halo 3s ease-in-out infinite; }

/* ============================================
   SPEECH BUBBLES - recurring comic motif
   ============================================ */
.speech-bubble {
    position: relative;
    display: inline-block;
    padding: 16px 28px;
    background: var(--secondary);
    border: 4px solid var(--foreground);
    border-radius: 32px;
    font-family: "Bangers", sans-serif;
    font-size: clamp(24px, 5vw, 40px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-comic-lg);
    transform: rotate(-2deg);
    color: var(--foreground);
    -webkit-text-stroke: 1px var(--foreground);
}
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -18px; left: 30px;
    width: 24px; height: 24px;
    background: var(--secondary);
    border-right: 4px solid var(--foreground);
    border-bottom: 4px solid var(--foreground);
    transform: rotate(45deg);
}
.speech-bubble-gold { background: var(--secondary); }
.speech-bubble-purple { background: var(--primary); color: #fff; -webkit-text-stroke-color: #fff; }
.speech-bubble-purple::after { background: var(--primary); }

/* ============================================
   HERO SECTIONS
   Full-bleed panels with coin-rain + starburst
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(160deg, #4c1d95 0%, #5b21b6 45%, #7c3aed 100%);
    color: #fff;
    padding: 72px 0 88px;
    border-bottom: 6px solid var(--foreground);
    overflow: clip;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(245,184,0,0.18) 0, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0, transparent 20%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 40px, rgba(255,255,255,0.03) 41px, transparent 42px);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, #f5b800 2px, transparent 3px),
        radial-gradient(circle, #f5b800 2px, transparent 3px);
    background-size: 180px 180px, 240px 240px;
    background-position: 0 0, 90px 120px;
    opacity: 0.25;
    animation: coin-rain 18s linear infinite;
    pointer-events: none;
}
@keyframes coin-rain {
    from { background-position: 0 -300px, 90px -180px; }
    to   { background-position: 0 400px, 90px 520px; }
}

.hero-inner {
    position: relative;
    display: grid;
    gap: 32px;
    align-items: center;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}
.hero-text h1 {
    color: #fff; -webkit-text-stroke: 2px var(--foreground);
    text-shadow: 4px 4px 0 var(--foreground);
    margin-bottom: 20px;
}
.hero-text .lede { font-size: 19px; max-width: 56ch; margin-bottom: 24px; color: #fdf6e3; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-trust .trust-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 20px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.35);
    font-weight: 800; font-size: 14px;
}
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(8px 8px 0 rgba(0,0,0,0.4));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}
.hero .speech-bubble {
    position: absolute;
    top: 8%; right: -8px;
    z-index: 2;
}

/* ============================================
   GAME CARD - slot game thumbnail
   ============================================ */
.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)); } }

.game-card {
    position: relative;
    background: var(--primary);
    border: 4px solid var(--foreground);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-comic);
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
    min-width: 0;
}
.game-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 0 var(--foreground), 0 0 28px rgba(124,58,237,0.55);
}
.game-card-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-bottom: 3px solid var(--foreground);
}
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-card-rtp {
    position: absolute; top: 10px; right: 10px;
    background: var(--secondary);
    color: var(--foreground);
    font-family: "Bangers", sans-serif;
    font-size: 13px; letter-spacing: 0.05em;
    padding: 4px 10px;
    border: 2px solid var(--foreground);
    border-radius: 20px;
}
.game-card-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--accent);
    color: #fff;
    font-family: "Bangers", sans-serif;
    font-size: 13px;
    padding: 4px 10px;
    border: 2px solid var(--foreground);
    border-radius: 20px;
    z-index: 2;
    transform: rotate(-8deg);
}
.game-card-body {
    background: var(--cream);
    padding: 14px 14px 16px;
    text-align: center;
}
.game-card-title {
    font-size: 22px;
    margin: 0 0 4px;
    -webkit-text-stroke: 0.5px var(--foreground);
}
.game-card-provider {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 12px;
    font-weight: 700;
}

/* ============================================
   BONUS CARD - promo offer
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.bonus-card {
    position: relative;
    background: var(--cream);
    border: 4px solid var(--primary);
    border-radius: 18px;
    padding: 28px 24px 24px;
    box-shadow: var(--shadow-comic-lg);
    text-align: center;
    overflow: hidden;
    min-width: 0;
}
.bonus-card-featured { border-color: var(--accent); background: linear-gradient(180deg, #fff5cc 0%, #fdf6e3 100%); }
.bonus-card::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, var(--foreground) 2px, transparent 3px);
    background-size: 12px 12px;
    opacity: 0.18;
    pointer-events: none;
}
.bonus-burst {
    position: relative;
    height: 60px;
    margin-bottom: 8px;
}
.bonus-burst .coin {
    position: absolute; top: 50%; left: 50%;
    width: 36px; height: 36px;
    background: radial-gradient(circle at 30% 30%, #fde68a, #f5b800 60%, #b45309);
    border: 3px solid var(--foreground);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-comic);
}
.bonus-burst .coin:nth-child(1) { transform: translate(-90%, -60%) rotate(-8deg); }
.bonus-burst .coin:nth-child(2) { transform: translate(-50%, -50%) scale(1.2); z-index: 2; }
.bonus-burst .coin:nth-child(3) { transform: translate(-10%, -40%) rotate(12deg); }

.bonus-card-title {
    font-size: clamp(22px, 4vw, 30px);
    margin: 8px 0 4px;
}
.bonus-card-amount {
    font-family: "Bangers", sans-serif;
    font-size: clamp(44px, 8vw, 64px);
    color: var(--secondary);
    -webkit-text-stroke: 2px var(--foreground);
    text-shadow: 3px 3px 0 var(--foreground);
    line-height: 1;
    margin: 6px 0 14px;
}
.bonus-card-desc { font-size: 16px; margin-bottom: 14px; }
.bonus-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    text-align: left;
    display: inline-block;
}
.bonus-card-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.bonus-card-list li::before {
    content: '✓';
    position: absolute; left: 0; top: 0;
    width: 20px; height: 20px;
    background: var(--primary); color: #fff;
    border-radius: 50%;
    font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
}
.bonus-card-cta { width: 100%; }

/* ============================================
   INFO CARD - generic illustrated feature
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.info-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .info-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .info-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.info-card {
    position: relative;
    background: var(--cream);
    border: 4px solid var(--foreground);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-comic);
    text-align: center;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
    min-width: 0;
}
.info-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 0 var(--foreground), 0 0 24px rgba(124,58,237,0.4);
}
.info-card-badge {
    position: absolute; top: -10px; right: 14px;
    background: var(--accent); color: #fff;
    font-family: "Bangers", sans-serif;
    padding: 4px 12px;
    border: 3px solid var(--foreground);
    border-radius: 16px;
    font-size: 14px;
    transform: rotate(4deg);
}
.info-card-icon {
    width: 96px; height: 96px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border: 4px solid var(--foreground);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px;
    box-shadow: var(--shadow-comic);
}
.info-card-icon img { width: 80%; height: 80%; object-fit: contain; }
.info-card-title { font-size: 24px; margin: 4px 0 10px; }
.info-card-desc { font-size: 16px; margin: 0; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    background: var(--cream);
    border: 4px solid var(--foreground);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-comic-lg);
}
.faq-item {
    border-bottom: 3px solid var(--foreground);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] { background: linear-gradient(90deg, rgba(245,184,0,0.15), transparent 60%); border-left: 6px solid var(--primary); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px;
    font-family: "Bangers", sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    list-style: none;
    -webkit-text-stroke: 0.5px var(--foreground);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: var(--primary); color: #fff;
    border: 3px solid var(--foreground);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-family: "Bangers", sans-serif;
    transition: transform 220ms ease-out;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--accent); }
.faq-answer {
    padding: 0 20px 20px;
    background: var(--muted);
    border-top: 2px dashed var(--foreground);
}
.faq-answer p { padding-top: 16px; margin: 0; font-size: 17px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 16px;
    background: linear-gradient(160deg, #3b0e85 0%, #5b21b6 60%, #7c3aed 100%);
    color: #fff;
    border-top: 6px solid var(--foreground);
    border-bottom: 6px solid var(--foreground);
    text-align: center;
    overflow: clip;
}
@media (min-width: 1024px) { .cta-banner { padding: 80px 24px; } }
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-radial-gradient(circle at 50% 50%, transparent 0 30px, rgba(245,184,0,0.07) 30px 32px);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, var(--secondary) 2px, transparent 3px);
    background-size: 200px 200px;
    opacity: 0.15;
    animation: coin-rain 22s linear infinite;
    pointer-events: none;
}
.cta-banner-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.cta-banner-text { font-size: 18px; max-width: 56ch; }
.cta-banner-fineprint { font-size: 13px; opacity: 0.75; margin: 0; }

/* ============================================
   PROVIDER STRIP
   ============================================ */
.provider-strip {
    background: var(--muted);
    border-top: 4px solid var(--foreground);
    border-bottom: 4px solid var(--foreground);
    padding: 32px 0;
    text-align: center;
}
.provider-caption {
    font-family: "Bangers", sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
    -webkit-text-stroke: 0.5px var(--foreground);
}
.provider-row {
    display: flex;
    gap: 16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
}
@media (min-width: 1024px) {
    .provider-row { justify-content: center; flex-wrap: wrap; overflow: visible; }
}
.provider-logo {
    flex: 0 0 auto;
    scroll-snap-align: center;
    min-height: 56px;
    min-width: 140px;
    padding: 12px 20px;
    background: var(--card);
    border: 3px solid var(--foreground);
    border-radius: 12px;
    font-family: "Bangers", sans-serif;
    font-size: 20px;
    letter-spacing: 0.05em;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-comic);
    color: var(--primary);
    -webkit-text-stroke: 0.5px var(--foreground);
    transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.provider-logo:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 0 var(--foreground), 0 0 18px rgba(124,58,237,0.4);
}

/* ============================================
   TABLES - comic-styled
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border: 4px solid var(--foreground);
    border-radius: 14px;
    background: var(--cream);
    box-shadow: var(--shadow-comic);
    margin: 24px 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 520px;
}
thead { background: var(--primary); color: #fff; }
th {
    padding: 14px 16px;
    font-family: "Bangers", sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 3px solid var(--foreground);
}
td {
    padding: 12px 16px;
    border-bottom: 2px solid rgba(26,22,37,0.12);
}
tbody tr:nth-child(even) { background: rgba(237,231,246,0.5); }
tbody tr:last-child td { border-bottom: 0; }
.table-recommended { background: rgba(245,184,0,0.25) !important; font-weight: 800; }

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: var(--secondary);
    border: 4px solid var(--foreground);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 24px 0;
    box-shadow: var(--shadow-comic);
    position: relative;
}
.tldr-box::before {
    content: 'TL;DR';
    position: absolute; top: -16px; left: 20px;
    background: var(--accent); color: #fff;
    padding: 4px 14px;
    border: 3px solid var(--foreground);
    border-radius: 20px;
    font-family: "Bangers", sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
}
.tldr-box p { margin: 8px 0 0; font-weight: 700; }

.callout {
    border-left: 6px solid var(--primary);
    background: var(--muted);
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    border-top: 3px solid var(--foreground);
    border-right: 3px solid var(--foreground);
    border-bottom: 3px solid var(--foreground);
}
.callout-warning { border-left-color: var(--accent); background: #fee2e2; }
.callout-tip { border-left-color: var(--secondary); background: #fef3c7; }
.callout strong { display: block; margin-bottom: 4px; font-family: "Bangers", sans-serif; font-size: 20px; letter-spacing: 0.04em; }

.stat-highlight {
    display: inline-block;
    background: var(--primary); color: #fff;
    padding: 16px 28px;
    border: 4px solid var(--foreground);
    border-radius: 14px;
    box-shadow: var(--shadow-comic);
    text-align: center;
    margin: 8px;
}
.stat-highlight .stat-number {
    display: block;
    font-family: "Bangers", sans-serif;
    font-size: clamp(40px, 7vw, 56px);
    color: var(--secondary);
    -webkit-text-stroke: 1px var(--foreground);
    line-height: 1;
}
.stat-highlight .stat-label { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }

.pull-quote {
    position: relative;
    background: var(--secondary);
    border: 4px solid var(--foreground);
    border-radius: 20px;
    padding: 28px 32px;
    margin: 32px auto;
    max-width: 700px;
    font-family: "Bangers", sans-serif;
    font-size: clamp(22px, 4vw, 32px);
    line-height: 1.2;
    text-align: center;
    box-shadow: var(--shadow-comic-lg);
    transform: rotate(-1deg);
    -webkit-text-stroke: 0.5px var(--foreground);
}
.pull-quote cite { display: block; font-family: "Nunito", sans-serif; font-style: normal; font-size: 15px; font-weight: 800; margin-top: 12px; letter-spacing: 0; text-transform: none; }

.trust-row {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    padding: 16px; margin: 24px 0;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: var(--card);
    border: 3px solid var(--foreground);
    border-radius: 20px;
    font-weight: 800; font-size: 14px;
    box-shadow: var(--shadow-comic);
}

.testimonial {
    background: var(--card);
    border: 4px solid var(--foreground);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-comic);
}
.testimonial blockquote { margin: 0 0 12px; font-style: italic; font-size: 16px; }
.testimonial footer { font-weight: 800; font-size: 14px; color: var(--primary); }

/* ============================================
   SEO DEEP DIVE TEXT BLOCKS
   ============================================ */
.seo-content { max-width: 820px; margin: 0 auto; }
.seo-content h2 { margin-top: 48px; }
.seo-content h3 { margin-top: 32px; }
.seo-content p { font-size: 17px; }
.seo-content ul, .seo-content ol { margin-bottom: 20px; }
.seo-content ul li::marker { color: var(--primary); }

/* ============================================
   WINNER TICKER / HALL OF FAME
   ============================================ */
.winner-table { margin: 24px 0; }
.winner-table th:last-child, .winner-table td:last-child { text-align: right; color: var(--primary); font-weight: 900; }
.winner-note { text-align: center; font-size: 13px; color: var(--muted-foreground); margin-top: 12px; }

/* ============================================
   HOMEPAGE-SPECIFIC
   ============================================ */
.hero-eyebrow {
    display: inline-block;
    font-family: "Bangers", sans-serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--secondary);
    background: rgba(0,0,0,0.25);
    padding: 6px 14px;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    margin-bottom: 14px;
    -webkit-text-stroke: 0.5px var(--foreground);
}

.section-link-row {
    text-align: center;
    margin-top: 32px;
    font-family: "Bangers", sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
}
.section-link-row a {
    text-decoration: none;
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 4px;
}
.section-link-row a:hover { color: var(--accent); }

.live-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 900px) { .live-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.live-visual {
    border: 4px solid var(--foreground);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-comic-lg);
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
}
.live-visual img { width: 100%; height: auto; display: block; }
.live-text .speech-bubble { margin-bottom: 20px; font-size: clamp(22px, 4vw, 32px); }

.tick-list { list-style: none; padding: 0; margin: 0 0 24px; }
.tick-list li {
    position: relative;
    padding: 6px 0 6px 34px;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 1px dashed rgba(26,22,37,0.15);
}
.tick-list li::before {
    content: '✓';
    position: absolute; left: 0; top: 6px;
    width: 24px; height: 24px;
    background: var(--primary); color: #fff;
    border: 2px solid var(--foreground);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900;
}

.section-bonus-hl,
.section-top-slots,
.section-vip,
.section-payments,
.section-winners,
.section-seo,
.section-live { position: relative; }

.section-top-slots {
    background:
        radial-gradient(circle at 10% 10%, rgba(91,33,182,0.08) 0, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(245,184,0,0.08) 0, transparent 30%);
}
.section-vip {
    background: linear-gradient(180deg, transparent 0%, rgba(237,231,246,0.6) 50%, transparent 100%);
}
.section-seo { background: var(--cream); border-top: 4px solid var(--foreground); border-bottom: 4px solid var(--foreground); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1625;
    color: #fdf6e3;
    border-top: 6px solid var(--secondary);
    padding: 48px 0 24px;
    margin-top: 64px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .footer-inner { padding: 0 24px; } }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col h3 {
    font-family: "Bangers", sans-serif;
    font-size: 22px;
    color: var(--secondary);
    margin: 0 0 16px;
    -webkit-text-stroke: 0.5px var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.05;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #fdf6e3; text-decoration: none; font-weight: 700; }
.footer-col a:hover { color: var(--secondary); }

.footer-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: "Bangers", sans-serif;
    font-size: 24px;
    color: var(--secondary);
    text-decoration: none;
    margin-bottom: 14px;
    -webkit-text-stroke: 0.5px var(--foreground);
}
.footer-brand p { color: #d4c5e8; font-size: 15px; max-width: 38ch; }

.payments-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #fff; color: #1a1625;
    font-weight: 900; font-size: 13px;
    border: 2px solid var(--secondary);
    border-radius: 6px;
}

.footer-col .trust-badge {
    background: rgba(255,255,255,0.08);
    color: #fdf6e3;
    border-color: var(--secondary);
    box-shadow: none;
    font-size: 13px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 2px dashed rgba(253,246,227,0.3);
    text-align: center;
    font-size: 13px;
    color: #d4c5e8;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 40px; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 450ms ease-out, transform 450ms ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LAUNCH / REDIRECT PAGE
   ============================================ */
.launch-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(124,58,237,0.18) 0, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(245,184,0,0.15) 0, transparent 45%),
        var(--background);
    padding: 48px 0;
}
.launch-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.launch-card {
    max-width: 620px;
    width: 100%;
    text-align: center;
    background: var(--cream);
    border: 4px solid var(--foreground);
    border-radius: 20px;
    padding: 40px 28px 36px;
    box-shadow: var(--shadow-comic-lg);
    position: relative;
}
.launch-card::before {
    content: '';
    position: absolute; top: -24px; left: -24px;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, var(--foreground) 2px, transparent 3px);
    background-size: 12px 12px;
    opacity: 0.18;
    pointer-events: none;
    border-radius: 20px 0 0 0;
}
.launch-visual {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 20px;
    aspect-ratio: 1 / 1;
}
.launch-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(6px 6px 0 rgba(0,0,0,0.35));
    animation: float 6s ease-in-out infinite;
}
.launch-bubble {
    position: absolute;
    top: 4%;
    right: -8px;
    z-index: 2;
    font-size: clamp(20px, 4vw, 28px);
    padding: 12px 20px;
}
.launch-loader {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.loader-coin {
    width: 18px; height: 18px;
    background: radial-gradient(circle at 30% 30%, #fde68a, #f5b800 60%, #b45309);
    border: 2px solid var(--foreground);
    border-radius: 50%;
    animation: loader-bounce 1.2s ease-in-out infinite;
}
.loader-coin:nth-child(2) { animation-delay: 0.2s; }
.loader-coin:nth-child(3) { animation-delay: 0.4s; }
@keyframes loader-bounce {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.75; }
    50% { transform: translateY(-10px) scale(1.15); opacity: 1; }
}
.launch-card h1 {
    font-size: clamp(32px, 7vw, 52px);
    margin: 8px 0 14px;
    transform: rotate(-1deg);
}
.launch-text {
    font-size: 17px;
    max-width: 48ch;
    margin: 0 auto 18px;
}
.launch-fineprint {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}