/* ============================================
   SlotLounge Casino - Retro Jazz Lounge
   Mobile-first, single dark theme
   ============================================ */

/* Reset & overflow safety */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at 12% 0%, rgba(245, 184, 65, 0.08), transparent 55%),
        radial-gradient(ellipse at 88% 100%, rgba(139, 30, 45, 0.12), transparent 60%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
.table-wrapper { max-width: 100%; overflow-x: auto; min-width: 0; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; box-sizing: border-box; }
section { overflow: clip; }

a { color: var(--primary); text-decoration: none; transition: color .22s ease-out; }
a:hover { color: var(--primary-hover); }

/* Inline links inside body copy must be distinguishable beyond color */
.info-body a,
.teaser-card-body p a,
.hero-sub a,
.lead a,
.bonus-card-desc a,
blockquote a,
.faq-answer a,
.callout a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.skip-link {
    position: absolute; top: -40px; left: 8px; z-index: 1100;
    background: var(--primary); color: var(--primary-foreground);
    padding: 8px 14px; border-radius: 6px; font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--foreground);
    line-height: 1.2;
    margin: 0 0 .6em;
    font-weight: 700;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5.5vw + 1rem, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw + 1rem, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 1.6vw + .8rem, 1.6rem); font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { margin: 0 0 1.25rem; }

.eyebrow {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .75rem;
}

.accent-word { color: var(--primary); font-style: italic; font-family: "Playfair Display", serif; }

.neon-underline {
    position: relative;
    display: inline-block;
    padding-bottom: .25em;
}
.neon-underline::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), #ffd980, var(--primary));
    box-shadow: 0 0 12px rgba(245, 184, 65, 0.6);
    transform: scaleX(0); transform-origin: left;
    transition: transform .6s ease-out;
}
.is-visible .neon-underline::after,
.animate-on-scroll.is-visible .neon-underline::after { transform: scaleX(1); }

blockquote {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-left: 3px solid var(--primary);
    background: var(--card);
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--champagne);
    border-radius: 0 8px 8px 0;
}
blockquote cite { display: block; font-size: .9rem; font-style: normal; color: var(--muted-foreground); margin-top: .75rem; font-family: "Outfit", sans-serif; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    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-title { margin-bottom: 1.25rem; }
.section-lede { font-size: 1.05rem; color: var(--champagne); max-width: 720px; margin-bottom: 2.5rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 18, 38, 0.94);
    border-bottom: 1px solid var(--border-soft);
    height: var(--header-h);
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}

.header-inner {
    max-width: 1280px; margin: 0 auto;
    height: 100%;
    padding: 0 16px;
    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-weight: 700; }
.brand-disc {
    width: 36px; height: 36px; border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, var(--primary) 0 30%, #1a1a1a 31% 100%);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(245,184,65,0.4), 0 0 14px rgba(245,184,65,0.25);
    flex-shrink: 0;
}
.brand-disc-label {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Playfair Display", serif;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.brand-name { font-family: "Playfair Display", serif; font-size: 1.15rem; letter-spacing: .01em; }
.brand-name-accent { color: var(--primary); font-style: italic; margin-left: 4px; }

/* Desktop nav */
.main-nav { display: none; }
@media (min-width: 1024px) {
    .main-nav { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: flex-end; }
    .nav-list {
        list-style: none; margin: 0; padding: 0;
        display: flex; gap: 26px; align-items: center;
    }
    .nav-link {
        color: var(--foreground); font-weight: 500; font-size: 15px;
        position: relative; padding: 6px 0;
    }
    .nav-link::after {
        content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
        height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: left;
        transition: transform .22s ease-out;
    }
    .nav-link:hover::after { transform: scaleX(1); }
    .nav-cta-group { display: flex; gap: 10px; align-items: center; }
}

/* Mobile menu toggle */
.menu-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--border);
    border-radius: 8px; cursor: pointer;
    padding: 0 10px;
    z-index: 1001;
}
.menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--foreground); border-radius: 2px;
    transition: transform .22s ease-out, opacity .22s ease-out;
}
.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); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile drawer */
@media (max-width: 1023.98px) {
    .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 20% 20%, rgba(245,184,65,0.08), transparent 60%),
            radial-gradient(circle at 80% 80%, rgba(139,30,45,0.15), transparent 60%);
        z-index: 999;
        padding: 32px 24px 120px;
        overflow-y: auto;
        flex-direction: column;
    }
    .main-nav.is-open { display: flex; }
    .nav-list {
        list-style: none; margin: 0 0 24px; padding: 0;
        display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    }
    .nav-list li { width: 100%; }
    .nav-link {
        display: flex; align-items: center;
        min-height: 52px;
        padding: 12px 16px;
        font-family: "Playfair Display", serif; font-size: 1.4rem;
        color: var(--foreground);
        border-bottom: 1px solid var(--border-soft);
    }
    .nav-cta-group {
        display: flex; flex-direction: column; gap: 12px;
        margin-top: 16px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-family: "Outfit", sans-serif;
    font-size: 15px; font-weight: 600;
    letter-spacing: .02em;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .22s ease-out, box-shadow .22s ease-out, background .22s ease-out, color .22s ease-out;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ffcd6a);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px rgba(245,184,65,0.28);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), #ffd980);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245,184,65,0.45);
}
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline-gold {
    background: transparent; color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-gold:hover { background: var(--primary); color: var(--primary-foreground); }

.btn-lg { min-height: 56px; padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 4px 14px rgba(245,184,65,0.28); }
    50% { box-shadow: 0 8px 28px rgba(245,184,65,0.6); }
}
.btn-pulse { animation: pulse-gold 4s ease-in-out infinite; }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta-wrap {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 950;
    pointer-events: none;
    padding: 16px;
}
@media (min-width: 1024px) { .sticky-cta-wrap { display: none; } }

.sticky-cta {
    pointer-events: auto;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 52px; padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary), #ffcd6a);
    color: var(--primary-foreground);
    font-weight: 700; font-size: 16px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 24px rgba(245,184,65,0.45);
    animation: pulse-gold 4s ease-in-out infinite;
}
.sticky-cta:hover { color: var(--primary-foreground); transform: translateY(-2px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 56px 0 72px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(245,184,65,0.18), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(139,30,45,0.22), transparent 55%),
        linear-gradient(180deg, #11173a 0%, #0d1226 100%);
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 96px 0 120px; } }

.hero-inner {
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 48px; }
}

.hero h1 { margin-bottom: 1rem; }
.hero h1 em { color: var(--primary); font-style: italic; }
.hero-sub {
    font-size: 1.05rem; color: var(--champagne);
    margin-bottom: 1.75rem; max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.75rem; }
.hero-stats {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    border-top: 1px solid var(--border-soft);
    padding-top: 20px;
    margin: 0;
}
.hero-stats > div { min-width: 0; }
.hero-stats dd { margin: 0; }
.hero-stat-num {
    display: block; font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 3vw + .5rem, 2rem);
    color: var(--primary); font-weight: 700;
}
.hero-stat-label { font-size: 13px; color: var(--muted-foreground); letter-spacing: .04em; }

.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 520px; margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(245,184,65,0.18), transparent 70%);
}
#vinyl-canvas {
    width: 100%; height: 100%;
    display: block;
}

/* ============================================
   GAME CARD
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
@media (min-width: 768px) {
    .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (min-width: 1024px) {
    .games-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

.game-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 14px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .22s ease-out, box-shadow .22s ease-out;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 22px rgba(245,184,65,0.35);
}
.game-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2042, #11173a);
}
.game-card-media img { width: 100%; height: 100%; object-fit: cover; }
.game-card-vinyl {
    position: absolute; inset: 0;
    pointer-events: none;
    background:
        repeating-radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0 4px, rgba(0,0,0,0.08) 4px 5px);
    mix-blend-mode: overlay;
}
.game-card-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--burgundy); color: var(--foreground);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    padding: 5px 9px; border-radius: 4px;
    z-index: 2;
}
.game-card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.game-card-title { font-family: "Playfair Display", serif; font-size: 1.05rem; margin: 0; color: #fff; line-height: 1.25; }
.game-card-provider { font-size: 12px; color: var(--champagne); margin: 0; letter-spacing: .04em; }
.game-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 8px; }
.meta-chip {
    font-size: 11px; padding: 4px 8px;
    border-radius: 999px; background: var(--secondary); color: var(--champagne);
    border: 1px solid var(--border-soft);
}
.game-card .btn { margin-top: auto; min-height: 42px; padding: 10px 16px; font-size: 14px; }
@media (min-width: 768px) {
    .game-card-body { padding: 18px; }
    .game-card-title { font-size: 1.2rem; }
}

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

.bonus-card {
    position: relative;
    background:
        linear-gradient(160deg, #1d2452 0%, #11173a 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .22s ease-out, box-shadow .22s ease-out;
}
.bonus-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 12px rgba(245,184,65,0.6);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 22px rgba(245,184,65,0.25); }
.bonus-card-featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--gold-glow); }

.bonus-card-marquee {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3vw + .8rem, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: .75rem;
    text-shadow: 0 0 20px rgba(245,184,65,0.35);
}
.bonus-card-title { font-size: 1.15rem; margin: 0 0 .5rem; color: var(--foreground); }
.bonus-card-desc { color: var(--champagne); font-size: 15px; margin: 0 0 1rem; }
.bonus-card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem; }
.chip {
    display: inline-flex; align-items: center;
    padding: 5px 11px; border-radius: 999px;
    background: var(--secondary); color: var(--champagne);
    font-size: 12px; font-weight: 500;
    border: 1px solid var(--border-soft);
}
.chip-code { background: rgba(245,184,65,0.12); color: var(--primary); border-color: var(--primary); font-weight: 700; letter-spacing: .04em; }
.bonus-card .btn { margin-top: auto; }
@media (min-width: 1024px) { .bonus-card { padding: 28px; } }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    text-align: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(139,30,45,0.18), transparent 70%),
        linear-gradient(180deg, #0a0e1f 0%, #11173a 100%);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 56px 20px;
}
@media (min-width: 1024px) { .cta-banner { padding: 96px 32px; } }
.cta-banner-vinyl {
    position: absolute; inset: 0;
    background:
        repeating-radial-gradient(circle at 50% 50%, rgba(245,184,65,0) 0 18px, rgba(245,184,65,0.04) 18px 19px);
    pointer-events: none;
}
.cta-banner-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta-banner-title {
    font-size: clamp(1.75rem, 4vw + 1rem, 2.75rem);
    margin: .5rem 0 1rem;
    color: var(--foreground);
}
.cta-banner-sub { color: var(--champagne); font-size: 1.05rem; margin: 0 0 1.75rem; }
.cta-banner-fineprint { font-size: 13px; color: var(--muted-foreground); margin-top: 1rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { background: linear-gradient(180deg, transparent, rgba(245,184,65,0.03)); }
.faq-list { max-width: 880px; margin: 32px auto 0; }
.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 0;
}
.faq-item[open] { background: rgba(245,184,65,0.04); }
.faq-question {
    cursor: pointer;
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 20px 16px;
    min-height: 56px;
    font-family: "Outfit", sans-serif;
    font-weight: 600; font-size: 17px;
    color: var(--foreground);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 24px; height: 24px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
}
.faq-icon::before, .faq-icon::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: transform .22s ease-out;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer { padding: 0 16px 22px; color: var(--champagne); }
.faq-answer p { margin: 0; line-height: 1.65; }
@media (min-width: 1024px) {
    .faq-question { padding: 24px 28px; font-size: 18px; }
    .faq-answer { padding: 0 28px 28px; }
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    position: relative;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(245,184,65,0.05), transparent 50%);
}
.info-section-inner { max-width: 880px; }
.info-body p { font-size: 17px; color: var(--champagne); }
.info-body a { color: var(--primary); border-bottom: 1px solid rgba(245,184,65,0.4); }
.info-body a:hover { border-bottom-color: var(--primary); }
.info-body h3 { color: var(--foreground); margin-top: 2rem; }
.info-body ul, .info-body ol { padding-left: 1.25rem; color: var(--champagne); margin-bottom: 1.5rem; }
.info-body li { margin-bottom: .5rem; }

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
    background: var(--background-alt);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 32px 0;
}
.logo-strip .eyebrow { display: block; text-align: center; margin-bottom: 1rem; }
.logo-strip-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px 24px;
}
.logo-strip-item {
    min-height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    color: var(--champagne);
    font-family: "Playfair Display", serif;
    font-size: 15px; font-weight: 500; letter-spacing: .02em;
    transition: color .22s, border-color .22s, background .22s;
}
.logo-strip-item:hover { color: var(--primary); border-color: var(--primary); background: rgba(245,184,65,0.08); }
@media (min-width: 1024px) { .logo-strip { padding: 48px 0; } }

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box {
    background: linear-gradient(135deg, rgba(245,184,65,0.08), rgba(139,30,45,0.06));
    border: 1px solid var(--primary);
    border-left-width: 4px;
    border-radius: 10px;
    padding: 20px 22px;
    margin: 0 0 32px;
}
.tldr-box .eyebrow { margin-bottom: .35rem; }
.tldr-box p { margin: 0; color: var(--champagne); }

.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 24px 0;
}
.callout-warning { border-left-color: var(--accent); }
.callout-tip { border-left-color: var(--primary); }
.callout strong { color: var(--primary); }
.callout a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.stat-highlight {
    display: flex; flex-direction: column;
    padding: 20px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    text-align: center;
}
.stat-highlight-num {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    color: var(--primary); font-weight: 700; line-height: 1;
}
.stat-highlight-label { color: var(--champagne); font-size: 14px; margin-top: 6px; }
.stat-highlight-source { color: var(--muted-foreground); font-size: 12px; margin-top: 4px; }

.stats-row {
    display: grid; gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px 0;
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.pull-quote {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(1.25rem, 1.6vw + 1rem, 1.75rem);
    color: var(--champagne);
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 32px 0;
    line-height: 1.4;
}
.pull-quote-attr { display: block; font-style: normal; font-family: "Outfit", sans-serif; font-size: 14px; color: var(--muted-foreground); margin-top: .75rem; }

/* Comparison table */
.table-wrapper { margin: 28px 0; border: 1px solid var(--border-soft); border-radius: 12px; }
.table-wrapper:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.table-wrapper:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
table.comparison-table, table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: var(--card);
}
table.comparison-table th, table.data-table th {
    background: var(--secondary);
    color: var(--primary);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--primary);
    font-size: 14px;
}
table.comparison-table td, table.data-table td {
    padding: 14px 16px;
    color: var(--champagne);
    border-bottom: 1px solid var(--border-soft);
}
table.comparison-table tbody tr:last-child td,
table.data-table tbody tr:last-child td { border-bottom: none; }
table.comparison-table tbody tr:hover { background: rgba(245,184,65,0.04); }
.col-recommended { background: rgba(245,184,65,0.08); }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.badge {
    display: inline-flex; align-items: center; min-height: 32px;
    padding: 6px 12px;
    font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--champagne);
}
.badge-license { border-color: var(--primary); color: var(--primary); }
.badge-age { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.badge-ssl { background: var(--secondary); color: var(--champagne); }

/* Filter chips */
.filter-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 28px;
}
.filter-chip {
    display: inline-flex; align-items: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--secondary);
    color: var(--champagne);
    font-size: 14px; font-weight: 500;
    border: 1px solid var(--border-soft);
    cursor: pointer;
    transition: all .22s ease-out;
}
.filter-chip:hover, .filter-chip.is-active {
    background: var(--primary); color: var(--primary-foreground);
    border-color: var(--primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity .6s ease-out, transform .6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse, .sticky-cta { animation: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #080c1c;
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
    margin-bottom: 84px; /* room for sticky mobile CTA */
}
@media (min-width: 1024px) { .site-footer { margin-bottom: 0; padding: 80px 0 32px; } }

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 1024px) { .footer-inner { padding: 0 32px; } }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }

.footer-brand .brand-footer { margin-bottom: 14px; }
.footer-tag { color: var(--champagne); font-size: 14px; margin: 0 0 16px; max-width: 360px; }

.footer-heading {
    font-family: "Outfit", sans-serif;
    font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--primary); font-weight: 700;
    margin: 0 0 16px;
}
.footer-links, .footer-payments {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-payments { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.footer-payments li {
    font-size: 12px; padding: 6px 10px;
    background: var(--card); border: 1px solid var(--border-soft);
    border-radius: 6px; color: var(--champagne);
}
.footer-links a { color: var(--champagne); font-size: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-disclaimer { font-size: 12px; color: var(--muted-foreground); margin-top: 14px; line-height: 1.55; }

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    margin-top: 32px; padding-top: 20px;
    text-align: center;
}
.copyright { font-size: 13px; color: var(--champagne); margin: 0 0 6px; }
.footer-license { font-size: 12px; color: var(--muted-foreground); margin: 0; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--primary); }
.bg-alt { background: var(--background-alt); }

.section-head { margin-bottom: 32px; }
.section-head .eyebrow { display: block; }

.lead { font-size: 1.1rem; color: var(--champagne); }

ul.check-list { list-style: none; padding-left: 0; }
ul.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: .65rem;
    color: var(--champagne);
}
ul.check-list li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--primary); font-weight: 700;
}

/* ============================================
   HOMEPAGE - hero host overlay
   ============================================ */
.hero-content { min-width: 0; }
.hero-visual { position: relative; }
.hero-host {
    position: absolute;
    right: -8%;
    bottom: -6%;
    width: 58%;
    max-width: 320px;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.5));
    z-index: 2;
}
@media (max-width: 767.98px) {
    .hero-visual { max-width: 360px; }
    .hero-host { right: -6%; bottom: -10%; width: 52%; }
}

/* Welcome bonus band */
.welcome-bonus-band {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(245,184,65,0.12), transparent 60%),
        radial-gradient(ellipse at 100% 50%, rgba(139,30,45,0.18), transparent 60%),
        var(--background-alt);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.welcome-bonus-card {
    display: grid;
    gap: 32px;
    align-items: center;
}
@media (min-width: 768px) {
    .welcome-bonus-card { grid-template-columns: 1.3fr 1fr; gap: 48px; }
}
.welcome-bonus-text .eyebrow strong {
    color: var(--primary-foreground);
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: .05em;
}
.welcome-bonus-text .check-list li {
    font-size: 16px;
    color: var(--foreground);
}
.welcome-bonus-ctas {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 24px;
}
.welcome-bonus-visual {
    display: flex; align-items: center; justify-content: center;
}
.welcome-bonus-visual img {
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 16px 30px rgba(0,0,0,0.4));
}

/* Duo teasers (live + vip) */
.duo-teasers .duo-grid {
    display: grid;
    gap: 24px;
}
@media (min-width: 1024px) {
    .duo-teasers .duo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
}
.teaser-card {
    display: flex; flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .22s ease-out, box-shadow .22s ease-out;
}
.teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 22px rgba(245,184,65,0.25);
}
.teaser-card-img {
    width: 100%; height: auto; display: block;
    aspect-ratio: 4 / 3; object-fit: cover;
}
.teaser-card-body { padding: 24px 22px 26px; }
.teaser-card-body h2 {
    font-size: clamp(1.3rem, 1.6vw + 1rem, 1.7rem);
    margin: .25rem 0 .75rem;
}
.teaser-card-body p {
    color: var(--champagne);
    margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
    .teaser-card-body { padding: 32px; }
}

/* Reload calendar */
.reload-calendar { background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%); }

/* Slots page - static hero visual (no Three.js) */
.hero-visual-static {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(245,184,65,0.22), transparent 60%),
        repeating-radial-gradient(circle at 50% 50%, rgba(245,184,65,0) 0 14px, rgba(245,184,65,0.05) 14px 15px),
        linear-gradient(160deg, #11173a, #0a0e1f);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero-host-floor {
    position: relative;
    right: auto; bottom: auto;
    width: 88%;
    max-width: 420px;
    margin: 0 auto;
}

/* Filter empty state */
.filter-empty {
    text-align: center;
    color: var(--champagne);
    margin: 32px 0 0;
    padding: 20px;
    background: var(--card);
    border-radius: 10px;
    border: 1px dashed var(--border);
}
.filter-item.is-hidden { display: none; }

/* ============================================
   JOIN (Registration redirect stub)
   ============================================ */
.join-stage {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    padding: 56px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 10%, rgba(245,184,65,0.16), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(139,30,45,0.22), transparent 55%),
        linear-gradient(180deg, #11173a 0%, #0a0e1f 100%);
}
@media (min-width: 1024px) {
    .join-stage { padding: 96px 0 96px; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; }
}

.join-bg { position: absolute; inset: 0; pointer-events: none; }
.join-bg-vinyl {
    position: absolute; inset: 0;
    background: repeating-radial-gradient(circle at 50% 50%, rgba(245,184,65,0) 0 22px, rgba(245,184,65,0.04) 22px 23px);
    opacity: .7;
}
.join-bg-glow {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}
.join-bg-glow-1 { top: -120px; left: -120px; background: rgba(245,184,65,0.35); }
.join-bg-glow-2 { bottom: -160px; right: -120px; background: rgba(139,30,45,0.45); }

.join-inner {
    position: relative;
    display: grid;
    gap: 40px;
    align-items: center;
    width: 100%;
}
@media (min-width: 1024px) {
    .join-inner { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}

.join-content { min-width: 0; }
.brand-join { margin-bottom: 24px; color: var(--foreground); }
.brand-join .brand-name { font-size: 1.25rem; }

.join-content h1 {
    font-size: clamp(2rem, 4.5vw + 1rem, 3rem);
    margin: 0 0 1rem;
}
.join-content h1 em { color: var(--primary); font-style: italic; }

.join-sub {
    font-size: 1.05rem;
    color: var(--champagne);
    max-width: 580px;
    margin-bottom: 1.75rem;
}
.join-sub strong { color: var(--primary); letter-spacing: .04em; }

.join-loader {
    display: flex; flex-direction: column; gap: 10px;
    margin: 0 0 1.75rem;
    max-width: 420px;
}
.join-loader-bar {
    position: relative;
    display: block;
    height: 6px;
    background: var(--secondary);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}
.join-loader-bar-fill {
    position: absolute; top: 0; left: -40%;
    height: 100%; width: 40%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 12px rgba(245,184,65,0.6);
    animation: join-loader-slide 1.6s ease-in-out infinite;
}
@keyframes join-loader-slide {
    0% { left: -40%; }
    100% { left: 100%; }
}
.join-loader-label {
    font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--primary); font-weight: 600;
}

.join-perks { margin-bottom: 1.75rem; }
.join-perks li { color: var(--foreground); }

.join-fineprint {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 620px;
    line-height: 1.65;
    margin: 0;
}
.join-fineprint a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.join-visual {
    display: flex; align-items: center; justify-content: center;
    min-width: 0;
}
.join-visual-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    display: flex; align-items: flex-end; justify-content: center;
}
.join-host {
    position: relative;
    z-index: 2;
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 40px rgba(0,0,0,0.55));
}
.join-visual-ring {
    position: absolute;
    inset: 8% 8% 8% 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(245,184,65,0.22), transparent 65%),
        repeating-radial-gradient(circle at 50% 50%, rgba(245,184,65,0) 0 8px, rgba(245,184,65,0.06) 8px 9px);
    border: 1px solid rgba(245,184,65,0.25);
    animation: join-ring-spin 28s linear infinite;
}
@keyframes join-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 767.98px) {
    .join-visual-frame { max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
    .join-loader-bar-fill { animation: none; left: 0; width: 100%; }
    .join-visual-ring { animation: none; }
}