/* ============================================
   BIZZO CASINO - RETRO RAT PACK DESIGN SYSTEM
   Mobile-first. Dark walnut + champagne gold + burgundy.
   ============================================ */

/* ---------- Reset & Safety ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(212,167,74,.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230,57,70,.06), transparent 50%);
}
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%; font: inherit; }
section { overflow: clip; position: relative; }
a { color: var(--secondary); text-decoration: none; transition: color .25s ease; }
a:hover { color: #f3d27a; }

.skip-link {
    position: absolute; top: -100px; left: 10px;
    background: var(--secondary); color: var(--secondary-foreground);
    padding: 10px 16px; border-radius: 6px; z-index: 2000;
    font-weight: 700;
}
.skip-link:focus { top: 10px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: #f3d27a;
    line-height: 1.2;
    margin: 0 0 var(--space-md);
    font-weight: 800;
    letter-spacing: .01em;
}
h1 { font-size: clamp(30px, 5vw + 10px, 44px); }
h2 { font-size: clamp(26px, 3vw + 12px, 34px); }
h3 { font-size: clamp(20px, 1.5vw + 14px, 24px); }
h4 { font-size: clamp(18px, 1vw + 14px, 20px); }
p { margin: 0 0 var(--space-md); }
.eyebrow {
    font-family: var(--font-neon);
    letter-spacing: .25em;
    font-size: 14px;
    color: var(--secondary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: var(--space-sm);
}
.neon-num {
    font-family: var(--font-neon);
    font-size: clamp(40px, 6vw, 56px);
    letter-spacing: .04em;
    color: #f3d27a;
    text-shadow: 0 0 10px rgba(212,167,74,.5), 0 0 24px rgba(212,167,74,.25);
}
::selection { background: var(--secondary); color: var(--secondary-foreground); }

/* Ensure inline links in prose are distinguishable without relying on color */
.longform a,
.callout a,
.tldr-box a,
.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(212,167,74,.6);
}
.longform a:hover,
.callout a:hover,
.tldr-box a:hover,
.faq-answer a:hover {
    text-decoration-color: #f3d27a;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
section.section { padding: var(--space-xl) 0; }
@media (min-width: 1024px) { section.section { padding: var(--space-2xl) 0; } }
.section-head { text-align: center; margin-bottom: var(--space-xl); }
.section-head p { max-width: 680px; margin-left: auto; margin-right: auto; color: var(--muted-foreground); }

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

.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-xl); } }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold-grad);
    color: #2a1810;
    box-shadow: 0 6px 20px rgba(212,167,74,.35);
}
.btn-gold::before {
    content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
    transition: left .6s ease;
}
.btn-gold:hover { transform: translateY(-2px); color: #1a0f0a; box-shadow: 0 10px 28px rgba(212,167,74,.5); }
.btn-gold:hover::before { left: 100%; }

.btn-burgundy {
    background: linear-gradient(135deg, #b8242f, #7a1f2b);
    color: #fdf6e9;
    border-color: rgba(212,167,74,.4);
}
.btn-burgundy:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 8px 22px rgba(230,57,70,.35); }

.btn-ghost {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}
.btn-ghost:hover { background: rgba(212,167,74,.12); color: #f3d27a; }

.btn-block { width: 100%; }
.btn-xl { min-height: 56px; padding: 16px 36px; font-size: 18px; }

/* Buttons inside prose should not get the underline decoration */
.longform a.btn,
.callout a.btn,
.tldr-box a.btn,
.faq-answer a.btn { text-decoration: none; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(26, 15, 10, 0.92);
    border-bottom: 1px solid var(--border-2);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.site-header::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.header-inner {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}
main { padding-top: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--foreground); }
.brand .logo {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--secondary);
    background: var(--amber-grad);
    padding: 4px;
    box-shadow: 0 0 14px rgba(212,167,74,.3);
}
.brand-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .02em;
    color: #f3d27a;
}
.brand-accent { color: var(--primary); margin-left: 2px; }

/* Menu toggle (burger) */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    margin: 0 auto;
    background: var(--secondary);
    transition: transform .3s ease, opacity .3s 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:
        radial-gradient(circle at 80% 10%, rgba(212,167,74,.1), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(230,57,70,.08), transparent 50%);
    padding: var(--space-lg) var(--space-md) var(--space-xl);
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border-2);
}
.main-nav.is-open { display: block; }
.nav-list {
    list-style: none;
    margin: 0 0 var(--space-lg);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}
.nav-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    border-bottom: 1px solid var(--border-2);
}
.nav-list a:hover { color: var(--secondary); }
.nav-cta { display: flex; flex-direction: column; gap: 12px; }
.nav-cta .btn { width: 100%; }

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    .main-nav {
        display: flex !important;
        position: static;
        background: transparent;
        padding: 0;
        border: 0;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        overflow: visible;
    }
    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
        margin: 0;
    }
    .nav-list a {
        min-height: 40px;
        padding: 8px 4px;
        font-size: 15px;
        font-family: var(--font-body);
        font-weight: 600;
        border: 0;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--foreground);
    }
    .nav-cta { flex-direction: row; gap: 10px; }
    .nav-cta .btn { width: auto; min-height: 42px; padding: 10px 20px; font-size: 14px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-xl) 0 var(--space-2xl);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(230,57,70,.12), transparent 60%),
        linear-gradient(180deg, #221309 0%, #1a0f0a 100%);
    overflow: clip;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(212,167,74,.03) 0 2px, transparent 2px 12px);
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero__inner { grid-template-columns: 1.1fr 1fr; gap: var(--space-xl); }
}
.hero__content h1 {
    font-size: clamp(34px, 6vw, 56px);
    color: #f3d27a;
    text-shadow: 0 2px 18px rgba(0,0,0,.6);
    margin-bottom: var(--space-md);
}
.hero__lead { color: var(--muted-foreground); font-size: 18px; margin-bottom: var(--space-lg); max-width: 60ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--space-lg); }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.hero__stat { text-align: center; padding: 12px 8px; border: 1px solid var(--border-2); border-radius: var(--radius); background: rgba(42,24,16,.6); }
.hero__stat-num { font-family: var(--font-neon); font-size: 28px; color: #f3d27a; letter-spacing: .04em; display:block; }
.hero__stat-lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-foreground); }

.hero__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(212,167,74,.18), transparent 60%);
}
.hero__visual canvas {
    position: absolute; inset: 0;
    width: 100% !important; height: 100% !important;
    border-radius: 50%;
}
.hero__bison {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 42%;
    max-width: 200px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.5));
}

/* ============================================
   CARDS - GAME
   ============================================ */
.game-card {
    position: relative;
    background: var(--card);
    background-image: linear-gradient(180deg, #34200f 0%, #2a1810 100%);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.game-card::before {
    content: ""; position: absolute; inset: 4px;
    border: 1px solid rgba(212,167,74,.35);
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.game-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--amber-grad);
    overflow: hidden;
}
.game-card__media img { width: 100%; height: 100%; object-fit: cover; }
.game-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px; color: rgba(212,167,74,.4);
    background: repeating-linear-gradient(45deg, #3d1a0f 0 10px, #2a1810 10px 20px);
}
.game-card__badge {
    position: absolute; top: 12px; left: 12px;
    background: #9a1925; color: #fff;
    padding: 4px 12px; border-radius: 999px;
    font-family: var(--font-neon); font-size: 14px; letter-spacing: .08em;
    border: 1px solid rgba(255,255,255,.4);
}
.game-card__rtp {
    position: absolute; top: 12px; right: 12px;
    background: rgba(26,15,10,.85); color: #f3d27a;
    padding: 4px 12px; border-radius: 999px;
    font-family: var(--font-neon); font-size: 14px; letter-spacing: .06em;
    border: 1px solid var(--secondary);
}
.game-card__body { padding: var(--space-md); display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.game-card__title { margin: 0; font-size: 20px; color: #f3d27a; }
.game-card__provider { margin: 0; font-size: 13px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .08em; }
.game-card__subtitle { margin: 0 0 8px; font-size: 14px; color: var(--muted-foreground); flex-grow: 1; }
.game-card__body .btn { margin-top: auto; }

/* ============================================
   CARDS - BONUS
   ============================================ */
.bonus-card {
    position: relative;
    background: var(--card);
    background-image: linear-gradient(180deg, #3a2214 0%, #2a1810 100%);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
}
.bonus-card::before {
    content: ""; position: absolute; inset: 5px;
    border: 1px dashed rgba(212,167,74,.35);
    border-radius: calc(var(--radius-lg) - 5px);
    pointer-events: none;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.bonus-card--featured { border-width: 2px; box-shadow: 0 0 24px rgba(230,57,70,.3), var(--shadow-card); }
.bonus-card__flicker {
    display: inline-block;
    background: #8a1620;
    color: #fff;
    font-family: var(--font-neon);
    font-size: 14px;
    letter-spacing: .12em;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    animation: neonFlicker 3s infinite;
    text-transform: uppercase;
}
@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; text-shadow: 0 0 8px #e63946; }
    20%, 24%, 55% { opacity: .55; text-shadow: none; }
}
.bonus-card__art { margin: 0 auto 14px; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.bonus-card__coin {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--gold-grad);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: #2a1810;
    box-shadow: 0 6px 20px rgba(212,167,74,.4);
}
.bonus-card__amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 8px; }
.amount-num { font-family: var(--font-neon); font-size: clamp(48px, 8vw, 64px); color: #f3d27a; line-height: 1; text-shadow: 0 0 14px rgba(212,167,74,.4); }
.amount-cur { font-family: var(--font-neon); font-size: 28px; color: var(--secondary); }
.bonus-card__title { font-size: 22px; margin: 0 0 8px; }
.bonus-card__desc { font-size: 15px; color: var(--muted-foreground); margin: 0 0 14px; }
.bonus-card__code {
    display: inline-block;
    background: linear-gradient(135deg, #b8242f, #7a1f2b);
    color: #fdf6e9;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 14px;
    border: 1px solid rgba(212,167,74,.4);
}
.bonus-card__code strong { color: #f3d27a; letter-spacing: .1em; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] { background: rgba(212,167,74,.04); }
.faq-item[open] .faq-question { border-left: 3px solid var(--primary); }
.faq-question {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #f3d27a;
    min-height: 60px;
    transition: background .2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(212,167,74,.06); }
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: var(--secondary);
    color: #2a1810;
    border-radius: 50%;
    font-family: var(--font-neon);
    font-size: 22px;
    flex-shrink: 0;
    transition: transform .3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 20px 20px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    margin: var(--space-xl) 0;
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, #3d1a0f 0%, #6b1f2b 50%, #a6321f 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--secondary);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.cta-banner::before {
    content: ""; position: absolute; inset: 6px;
    border: 1px solid rgba(212,167,74,.3);
    border-radius: calc(var(--radius-lg) - 6px);
    pointer-events: none;
}
.cta-banner__bison {
    position: absolute;
    right: -40px; bottom: -40px;
    width: 200px; height: 200px;
    opacity: .12;
    font-size: 200px;
    display: flex; align-items: center; justify-content: center;
    color: #f3d27a;
}
.cta-banner__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-banner__title { font-size: clamp(26px, 4vw, 38px); color: #fdf6e9; margin-bottom: 12px; }
.cta-banner__subtitle { color: rgba(253, 246, 233, 0.85); font-size: 17px; margin-bottom: var(--space-md); }
.cta-banner__note { margin-top: 14px; font-size: 13px; color: rgba(253, 246, 233, 0.7); }

/* ============================================
   INFO TABLE
   ============================================ */
.info-table-wrap {
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: 6px;
    overflow-x: auto;
    box-shadow: var(--shadow-card);
    max-width: 100%;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    font-size: 15px;
}
.info-table caption {
    caption-side: top;
    padding: 14px 10px 10px;
    font-family: var(--font-display);
    font-weight: 700;
    color: #f3d27a;
    text-align: left;
    font-size: 17px;
}
.info-table thead th {
    background: linear-gradient(135deg, #7a1f2b, #b8242f);
    color: #fdf6e9;
    font-family: var(--font-neon);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 2px solid var(--secondary);
}
.info-table tbody td, .info-table tbody th {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-2);
    color: var(--foreground);
    text-align: left;
    font-weight: 400;
}
.info-table tbody th { color: #f3d27a; font-family: var(--font-display); font-weight: 700; }
.info-table tbody tr:nth-child(even) { background: rgba(212,167,74,.04); }
.info-table tbody tr:hover { background: rgba(212,167,74,.08); }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-strip {
    background: linear-gradient(180deg, #221309, #1a0f0a);
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}
.trust-list {
    list-style: none;
    margin: 0 0 var(--space-sm);
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid var(--secondary);
    font-family: var(--font-body);
    font-size: 14px;
    color: #f3d27a;
    transition: transform .25s ease, box-shadow .25s ease;
}
.trust-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212,167,74,.25); }
.trust-badge__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gold-grad); color: #2a1810;
    font-weight: 900; font-size: 14px;
}
.trust-badge.age-badge .trust-badge__icon { background: #1a0f0a; color: #fff; }
.trust-caption { font-size: 14px; color: var(--muted-foreground); margin: 0; }

/* ============================================
   PROVIDER LOGOS
   ============================================ */
.providers {
    background: var(--card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
}
.providers__title {
    text-align: center;
    font-size: 22px;
    margin-bottom: var(--space-md);
}
.providers__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--secondary-2);
    border: 1px solid var(--secondary-2);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (min-width: 768px) { .providers__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .providers__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.provider-tile {
    background: var(--card);
    padding: 22px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    transition: background .25s ease;
}
.provider-tile:hover { background: rgba(212,167,74,.08); }
.provider-tile__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--secondary);
    letter-spacing: .02em;
    text-align: center;
    filter: grayscale(0.3);
}
.provider-tile:hover .provider-tile__name { color: #f3d27a; filter: none; }

/* ============================================
   ENGAGEMENT / CRO PATTERNS
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(212,167,74,.08), rgba(230,57,70,.05));
    border: 1px solid var(--secondary);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}
.tldr-box h3 {
    font-family: var(--font-neon);
    font-size: 20px;
    letter-spacing: .1em;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.callout {
    background: var(--card);
    border: 1px solid var(--border-2);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    display: flex;
    gap: 14px;
}
.callout__icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: #2a1810;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900;
}
.callout p { margin: 0; }

.stat-highlight {
    text-align: center;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
}
.stat-highlight__num {
    display: block;
    font-family: var(--font-neon);
    font-size: clamp(44px, 6vw, 60px);
    color: #f3d27a;
    line-height: 1;
    letter-spacing: .02em;
    text-shadow: 0 0 16px rgba(212,167,74,.3);
}
.stat-highlight__label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 6px;
}
.stat-highlight__source { font-size: 12px; color: var(--muted-foreground); margin-top: 4px; display: block; }

.pull-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    border-left: 4px solid var(--primary);
    background: rgba(212,167,74,.04);
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: #f3d27a;
    line-height: 1.4;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote cite {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ---------- SEO Longform content ---------- */
.longform {
    max-width: 820px;
    margin: 0 auto;
}
.longform h2 { margin-top: var(--space-xl); }
.longform h3 { margin-top: var(--space-lg); }
.longform ul, .longform ol { padding-left: 22px; margin-bottom: var(--space-md); }
.longform li { margin-bottom: 8px; }
.longform a { color: var(--secondary); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(212,167,74,.6); }
.longform a:hover { color: #f3d27a; text-decoration-color: #f3d27a; }

/* ---------- Explore / Navigation grid ---------- */
.explore-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
@media (min-width: 768px) { .explore-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .explore-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.explore-card {
    display: flex; flex-direction: column; gap: 10px;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    color: var(--foreground);
    min-height: 160px;
    justify-content: center;
}
.explore-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); color: #f3d27a; border-color: var(--secondary); }
.explore-card__icon { font-size: 32px; color: var(--secondary); }
.explore-card__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #f3d27a; }
.explore-card__desc { font-size: 13px; color: var(--muted-foreground); }

/* ---------- Payment methods strip ---------- */
.pay-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: var(--space-md) 0;
    scroll-snap-type: x mandatory;
}
.pay-strip__item {
    flex-shrink: 0;
    min-width: 130px;
    padding: 18px 20px;
    background: var(--card);
    border: 1px solid var(--secondary);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    color: #f3d27a;
    text-align: center;
    scroll-snap-align: start;
}

/* ---------- Filigree ornament ---------- */
.filigree {
    display: inline-block;
    color: var(--secondary);
    font-size: 24px;
    opacity: .6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #1a0f0a 0%, #0d0705 100%);
    border-top: 2px solid var(--secondary);
    padding: var(--space-xl) 0 var(--space-md);
    margin-top: var(--space-2xl);
    position: relative;
}
.site-footer::before {
    content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-xl); } }
.footer-col .brand { margin-bottom: var(--space-sm); }
.footer-about { font-size: 14px; color: var(--muted-foreground); }
.footer-title {
    font-family: var(--font-neon);
    font-size: 18px;
    letter-spacing: .12em;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--foreground); font-size: 14px; }
.footer-links a:hover { color: var(--secondary); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-sm); }
.mini-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(212,167,74,.1);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 11px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.mini-badge.age-badge { background: #1a0f0a; color: #fff; border-color: var(--primary); }
.pay-logos { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pay-logos li span {
    display: inline-block;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border-2);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
}
.footer-note { font-size: 13px; color: var(--muted-foreground); margin-bottom: 10px; }
.footer-note strong { color: #f3d27a; }
.footer-bottom {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-md) var(--space-md) 0;
    border-top: 1px solid var(--border-2);
    text-align: center;
    font-size: 13px;
    color: var(--muted-foreground);
}
.footer-bottom p { margin: 0 0 6px; }
.footer-disclaimer { font-style: italic; }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   ENTER.HTML placeholder page
   ============================================ */
.enter-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212,167,74,.1), transparent 60%),
        var(--background);
}
.enter-card {
    text-align: center;
    padding: var(--space-xl);
    max-width: 440px;
}
.enter-card .brand-name { font-size: 36px; margin: var(--space-md) 0; display: block; }
.enter-card .enter-title {
    font-family: var(--font-neon);
    letter-spacing: .2em;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 14px;
}
.enter-card p { color: var(--muted-foreground); font-size: 18px; }
.enter-card .logo {
    width: 88px; height: 88px; border-radius: 50%;
    border: 2px solid var(--secondary);
    background: var(--amber-grad);
    padding: 8px;
    box-shadow: 0 0 40px rgba(212,167,74,.4);
    margin: 0 auto;
}

/* ============================================
   BONUS HERO MEDALLION (non-3D fallback visual)
   ============================================ */
.bonus-hero-medallion {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(212,167,74,.35), rgba(42,24,16,.9) 65%),
        var(--walnut-grad);
    border: 3px solid var(--secondary);
    box-shadow:
        inset 0 0 40px rgba(212,167,74,.35),
        0 0 60px rgba(230,57,70,.25);
    overflow: hidden;
}
.bonus-hero-medallion::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 2px dashed rgba(212,167,74,.5);
    animation: medallionSpin 40s linear infinite;
}
.bonus-hero-medallion::after {
    content: "★ BIZZO SALOON ★ RAT PACK VEGAS ★ BIZZO SALOON ★ RAT PACK VEGAS ★";
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212,167,74,.3);
    font-family: var(--font-neon);
    font-size: 13px;
    letter-spacing: .35em;
    color: rgba(212,167,74,.55);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    overflow: hidden;
    animation: medallionSpin 60s linear infinite reverse;
}
@keyframes medallionSpin {
    from { transform: rotate(0); }
    to   { transform: rotate(360deg); }
}
.bonus-hero-medallion__ring {
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    box-shadow: inset 0 0 20px rgba(212,167,74,.4);
}
.bonus-hero-medallion__amount {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.bonus-hero-medallion__num {
    font-family: var(--font-neon);
    font-size: clamp(72px, 14vw, 128px);
    line-height: 1;
    color: #f3d27a;
    text-shadow:
        0 0 20px rgba(212,167,74,.7),
        0 0 40px rgba(230,57,70,.4);
}
.bonus-hero-medallion__cur {
    font-family: var(--font-neon);
    font-size: clamp(28px, 5vw, 44px);
    color: var(--secondary);
    margin-top: -6px;
}
.bonus-hero-medallion__sub {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.2vw + 6px, 18px);
    font-weight: 700;
    color: #fdf6e9;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
}