/* ============================================
   BILLIONAIRESPIN CASINO - DESIGN SYSTEM
   Mobile-first, dark-only, glassmorphism luxury
   ============================================ */

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

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

body {
    margin: 0;
    font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(16,185,129,0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 100%, rgba(232,194,106,0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0A0F1E 0%, #0C1328 40%, #0A0F1E 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

.table-wrapper, [class*="table-"] { 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(--primary); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--accent); }

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

/* ============================================
   TYPOGRAPHY - Playfair Display + Inter Tight
   H1 44/72, H2 32/52, H3 24/34
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--foreground);
    margin: 0 0 .6em;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.25rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 1.2vw + 1rem, 2.125rem); font-weight: 600; }
h4 { font-size: clamp(1.25rem, .6vw + 1rem, 1.5rem); }

p { margin: 0 0 1.5rem; color: var(--foreground); }
p.lead { font-size: 1.15rem; color: var(--muted-foreground); }

.eyebrow {
    display: inline-block;
    font-family: "Inter Tight", sans-serif;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.gold-accent { color: var(--accent); font-style: italic; }

/* ============================================
   LAYOUT - container, section spacing
   ============================================ */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.25rem; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

@media (min-width: 1024px) {
    .section { padding: 140px 0; }
    .section-sm { padding: 80px 0; }
    .container { padding: 0 2rem; }
}

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: minmax(0, 1fr); }
.grid-3 { grid-template-columns: minmax(0, 1fr); }
.grid-4 { grid-template-columns: minmax(0, 1fr); }

@media (min-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .grid { gap: 1.75rem; }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   SKIP LINK - a11y
   ============================================ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: .75rem 1rem;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================
   THEME TOGGLE - discreet contrast mode button
   ============================================ */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(17, 25, 46, 0.6);
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    transition: border-color .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-left: .5rem;
    flex-shrink: 0;
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.35);
    outline: none;
    transform: scale(1.05);
}
.theme-toggle[aria-pressed="true"] {
    color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 1023px) {
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Contrast theme - keeps dark-only brand, shifts to higher-contrast navy */
.theme-contrast {
    --background: #050812;
    --foreground: #FFFFFF;
    --card: #0C1430;
    --card-foreground: #FFFFFF;
    --popover: #0C1430;
    --popover-foreground: #FFFFFF;
    --secondary: #131E40;
    --muted: #172346;
    --muted-foreground: #E2E8F0;
    --border: #3A4A70;
}
.theme-contrast body {
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(16,185,129,0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 100%, rgba(232,194,106,0.08) 0%, transparent 50%),
        linear-gradient(180deg, #050812 0%, #081028 40%, #050812 100%);
}

/* ============================================
   HEADER - fixed translucent with mobile drawer
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.85);
    border-bottom: 1px solid rgba(42, 54, 86, 0.5);
}

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

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-inner { height: 80px; padding: 0 2rem; }
}

/* Brand / logo */
.brand {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    color: var(--foreground);
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.brand:hover { color: var(--accent); }
.brand .logo {
    width: 40px; height: 40px;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(16,185,129,.35);
}
.brand-name { white-space: nowrap; }
.brand-accent { color: var(--accent); }

/* Nav */
.main-nav { display: none; }

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.75rem;
    align-items: center;
}
.nav-list a {
    color: var(--foreground);
    font-weight: 500;
    font-size: .95rem;
    position: relative;
    padding: .5rem 0;
}
.nav-list a:hover { color: var(--accent); }
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin-left: 1rem;
}

/* Desktop nav visible from 1024px */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Mobile menu toggle (burger) */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(26, 36, 68, 0.6);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    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); }

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

/* Mobile nav drawer */
@media (max-width: 1023.98px) {
    .main-nav {
        position: fixed;
        top: 68px;
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        z-index: 999;
        display: none;
        flex-direction: column;
        padding: 2rem 1.5rem;
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }
    .main-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .nav-list li { border-bottom: 1px solid var(--border); }
    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 1.125rem;
        font-family: "Playfair Display", serif;
    }
    .nav-cta {
        margin: 2rem 0 0;
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
    }
    .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================
   BUTTONS - emerald neon with pulse
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .75rem 1.5rem;
    border-radius: 999px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, background .3s ease, color .3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--primary-foreground);
    box-shadow: 0 0 22px rgba(16,185,129,.45), inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 0 34px rgba(16,185,129,.7), inset 0 0 0 1px rgba(255,255,255,.18);
    color: var(--primary-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-gold {
    background: linear-gradient(135deg, #E8C26A 0%, #B89547 100%);
    color: #0A0F1E;
    box-shadow: 0 0 18px rgba(232,194,106,.4);
}
.btn-gold:hover { transform: scale(1.04); box-shadow: 0 0 28px rgba(232,194,106,.65); color: #0A0F1E; }

.btn-lg { min-height: 56px; padding: 1rem 2rem; font-size: 1.0625rem; }

.btn-pulse { animation: pulseEmerald 2s ease-in-out infinite; }

@keyframes pulseEmerald {
    0%, 100% { box-shadow: 0 0 22px rgba(16,185,129,.45), inset 0 0 0 1px rgba(255,255,255,.08); }
    50% { box-shadow: 0 0 40px rgba(16,185,129,.85), 0 0 60px rgba(16,185,129,.3), inset 0 0 0 1px rgba(255,255,255,.2); }
}

@media (prefers-reduced-motion: reduce) {
    .btn-pulse { animation: none; }
    * { transition: none !important; animation: none !important; }
}

/* ============================================
   GLASS CARD - core brand unit
   ============================================ */
.glass-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 36, 68, 0.55), rgba(17, 25, 46, 0.7));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35),
        inset 0 0 30px rgba(232, 194, 106, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .3s ease;
}

@media (min-width: 1024px) { .glass-card { padding: 2.25rem; } }

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 0%, rgba(232,194,106,.12) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.7);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(16, 185, 129, 0.2),
        inset 0 0 40px rgba(232, 194, 106, 0.12);
}

.glass-tag {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .625rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 0 12px rgba(16,185,129,.5);
}

.glass-card-media {
    margin: -1.5rem -1.5rem 1.25rem;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1A2444, #0A0F1E);
}
@media (min-width: 1024px) {
    .glass-card-media { margin: -2.25rem -2.25rem 1.5rem; }
}
.glass-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.glass-card:hover .glass-card-media img { transform: scale(1.06); }

.glass-value {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .5rem;
    text-shadow: 0 0 20px rgba(232,194,106,.4);
}

.glass-title {
    font-size: 1.375rem;
    color: var(--foreground);
    margin-bottom: .5rem;
}

.glass-desc {
    color: var(--muted-foreground);
    font-size: .9375rem;
    margin-bottom: 1rem;
}

.glass-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--primary);
    font-weight: 600;
    font-size: .9375rem;
    margin-top: auto;
}
.glass-link:hover { color: var(--accent); gap: .65rem; }

/* Featured glass card variants */
.glass-card.featured {
    border-color: rgba(232, 194, 106, 0.55);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(232, 194, 106, 0.12),
        inset 0 0 30px rgba(232, 194, 106, 0.08);
}

.glass-card.compact { padding: 1.25rem; }
.glass-card.compact .glass-title { font-size: 1.125rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    margin: 80px 0;
    padding: 3rem 1.5rem;
    background:
        radial-gradient(circle at 80% 50%, rgba(16,185,129,.15) 0%, transparent 50%),
        linear-gradient(135deg, #11192E 0%, #0A0F1E 60%, #1A2444 100%);
    border-top: 1px solid rgba(232,194,106,.3);
    border-bottom: 1px solid rgba(16,185,129,.3);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta-banner { margin: 140px 0; padding: 5rem 2rem; }
}

.cta-banner-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .cta-banner-inner { grid-template-columns: 3fr 2fr; }
}

.cta-banner-copy { text-align: center; }
@media (min-width: 768px) { .cta-banner-copy { text-align: left; } }

.cta-banner-title {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    margin-bottom: 1rem;
}

.cta-banner-sub {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
    max-width: 52ch;
}
@media (min-width: 768px) { .cta-banner-sub { margin-left: 0; } }
@media (max-width: 767.98px) { .cta-banner-sub { margin-left: auto; margin-right: auto; } }

.cta-banner-micro {
    margin-top: 1rem;
    font-size: .8125rem;
    color: var(--muted-foreground);
    opacity: .85;
}

.cta-banner-mascot {
    position: relative;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-holo {
    width: 260px; height: 320px;
    background:
        radial-gradient(ellipse at center, rgba(232,194,106,.3) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 30%, rgba(16,185,129,.25) 0%, transparent 50%);
    border-radius: 50%;
    filter: blur(4px);
    animation: holoFloat 6s ease-in-out infinite;
}

@keyframes holoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.04); }
}

.cta-banner-mascot .coin {
    position: absolute;
    width: 28px; height: 28px;
    background: radial-gradient(circle at 30% 30%, #F5D98A, #B89547);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(232,194,106,.7);
}
.cta-banner-mascot .coin-1 { top: 10%; left: 20%; animation: coinDrift 7s ease-in-out infinite; }
.cta-banner-mascot .coin-2 { top: 60%; right: 15%; animation: coinDrift 9s ease-in-out infinite reverse; }
.cta-banner-mascot .coin-3 { bottom: 20%; left: 40%; animation: coinDrift 11s ease-in-out infinite; }

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-wrap { max-width: 880px; margin: 0 auto; }

.faq-heading { text-align: center; margin-bottom: 2rem; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
    background: linear-gradient(145deg, rgba(26, 36, 68, 0.5), rgba(17, 25, 46, 0.65));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.faq-item[open] {
    border-color: rgba(16,185,129,.5);
    border-left: 3px solid var(--accent);
    box-shadow: 0 0 24px rgba(16,185,129,.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 56px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-family: "Playfair Display", serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

@media (min-width: 768px) {
    .faq-question { font-size: 1.1875rem; padding: 1.25rem 1.75rem; }
}

.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16,185,129,.15);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    box-shadow: 0 0 16px rgba(16,185,129,.5);
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted-foreground);
    border-top: 1px solid rgba(42, 54, 86, .5);
    padding-top: 1rem;
    margin-top: 0;
}
@media (min-width: 768px) { .faq-answer { padding: 1.25rem 1.75rem 1.5rem; } }
.faq-answer p { margin: 0; line-height: 1.7; }

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-strip {
    padding: 2.5rem 1.25rem;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, rgba(26,36,68,.35), rgba(10,15,30,.35));
    border: 1px solid rgba(42,54,86,.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-heading { margin-bottom: 2rem; }

.stat-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
}
@media (min-width: 600px) { .stat-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .stat-row { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }

.stat-block { position: relative; padding: .5rem 0; }

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 26px rgba(232,194,106,.35);
    display: inline-block;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--primary);
}

.stat-label {
    display: block;
    margin-top: .75rem;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.stat-note { font-size: .8125rem; color: var(--muted-foreground); opacity: .75; margin-top: .35rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, #0A0F1E 0%, #06090F 100%);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
}

@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, minmax(0,1fr)); padding: 0 2rem; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; } }

.footer-col .brand { margin-bottom: 1rem; }

.footer-tag {
    color: var(--muted-foreground);
    font-size: .9375rem;
    max-width: 42ch;
    margin-bottom: 1.25rem;
}

.footer-title {
    font-family: "Inter Tight", sans-serif;
    font-size: .8125rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.footer-links a {
    color: var(--muted-foreground);
    font-size: .9375rem;
}
.footer-links a:hover { color: var(--accent); }

.payment-row {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.pay-chip {
    display: inline-block;
    padding: .4rem .75rem;
    background: rgba(26,36,68,.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--foreground);
    letter-spacing: 0.03em;
}

.safer-links {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.safer-links a {
    color: var(--muted-foreground);
    font-size: .8125rem;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 2px;
}

.license-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .75rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-license { background: rgba(232,194,106,.15); color: var(--accent); border: 1px solid rgba(232,194,106,.4); }
.badge-age { background: rgba(239,68,68,.15); color: #FCA5A5; border: 1px solid rgba(239,68,68,.4); }
.badge-ssl { background: rgba(16,185,129,.15); color: var(--primary); border: 1px solid rgba(16,185,129,.4); }

.footer-bottom {
    max-width: 1240px;
    margin: 2.5rem auto 0;
    padding: 1.5rem 1.25rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.copyright {
    color: var(--muted-foreground);
    font-size: .8125rem;
    margin: 0;
}

/* ============================================
   PAGE OFFSET - fixed header
   ============================================ */
main#main-content { padding-top: 68px; }
@media (min-width: 1024px) { main#main-content { padding-top: 80px; } }

/* ============================================
   HERO SECTION (shared)
   ============================================ */
.hero {
    position: relative;
    padding: 3rem 1.25rem 4rem;
    text-align: center;
    overflow: clip;
}
@media (min-width: 1024px) { .hero { padding: 6rem 2rem 7rem; text-align: left; } }

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .gold-accent { display: inline-block; }

.hero-sub {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 58ch;
    margin: 0 auto 2rem;
}
@media (min-width: 1024px) { .hero-sub { margin: 0 0 2rem; } }

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}
@media (min-width: 1024px) { .hero-cta-row { justify-content: flex-start; } }

.hero-visual {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual img { border-radius: 20px; }

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
    color: var(--muted-foreground);
    font-size: .875rem;
    justify-content: center;
}
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); }

/* ============================================
   CALLOUTS, TL;DR, PULL QUOTES
   ============================================ */
.tldr {
    background: linear-gradient(145deg, rgba(232,194,106,.08), rgba(16,185,129,.06));
    border: 1px solid rgba(232,194,106,.35);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}
.tldr h2, .tldr h3 {
    font-size: 1.125rem;
    color: var(--accent);
    margin-bottom: .75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
}
.tldr ul { margin: 0; padding-left: 1.25rem; color: var(--foreground); }
.tldr li { margin-bottom: .5rem; }
.tldr li::marker { color: var(--accent); }

.callout {
    background: rgba(16,185,129,.08);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    color: var(--foreground);
}
.callout strong { color: var(--accent); }

.callout-warning {
    background: rgba(239,68,68,.08);
    border-left-color: var(--destructive);
}

blockquote.pullquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--accent);
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem);
    color: var(--foreground);
    line-height: 1.4;
}
blockquote.pullquote cite {
    display: block;
    margin-top: .75rem;
    font-size: .9375rem;
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    color: var(--muted-foreground);
}

/* ============================================
   TABLES - comparison / limits
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(26, 36, 68, 0.4), rgba(17, 25, 46, 0.5));
    border: 1px solid var(--border);
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.table-wrapper:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.data-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: .9375rem;
}
.data-table thead th {
    background: rgba(10,15,30,.6);
    color: var(--accent);
    font-family: "Inter Tight", sans-serif;
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(42,54,86,.5);
    color: var(--foreground);
    vertical-align: top;
}
.data-table tbody tr:hover { background: rgba(16,185,129,.05); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table .recommended { background: rgba(232,194,106,.08); }
.data-table .recommended td:first-child { border-left: 3px solid var(--accent); }

/* ============================================
   SEO TEXT BLOCK
   ============================================ */
.seo-text {
    max-width: 880px;
    margin: 0 auto;
}
.seo-text h2, .seo-text h3 { margin-top: 2.5rem; }
.seo-text h2:first-child, .seo-text h3:first-child { margin-top: 0; }
.seo-text ul, .seo-text ol { padding-left: 1.5rem; margin: 0 0 1.5rem; }
.seo-text li { margin-bottom: .5rem; }
.seo-text li::marker { color: var(--primary); }

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) { .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; } }

.pros, .cons {
    background: linear-gradient(145deg, rgba(26,36,68,.4), rgba(17,25,46,.5));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}
.pros { border-left: 3px solid var(--primary); }
.cons { border-left: 3px solid var(--accent); }
.pros h3 { color: var(--primary); }
.cons h3 { color: var(--accent); }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li {
    padding: .5rem 0 .5rem 1.75rem;
    position: relative;
    color: var(--foreground);
}
.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.cons li::before { content: "!"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ============================================
   INTERNAL LINK HUB - 4-card grid on index
   ============================================ */
.link-hub-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.link-hub-card:hover { color: inherit; }

/* ============================================
   PROVIDERS / PAYMENT LOGO GRID
   ============================================ */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}
@media (min-width: 768px) { .logo-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.logo-chip {
    aspect-ratio: 2/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(26,36,68,.55), rgba(17,25,46,.7));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .75rem;
    color: var(--foreground);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: .9375rem;
    text-align: center;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.logo-chip:hover {
    border-color: rgba(232,194,106,.5);
    box-shadow: 0 0 18px rgba(232,194,106,.18);
    transform: translateY(-2px);
    color: var(--accent);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1), filter .8s ease;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger children */
.animate-on-scroll.is-visible + .animate-on-scroll { transition-delay: .1s; }

/* ============================================
   MASCOT / DECORATIVE
   ============================================ */
.mascot-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(16,185,129,.25)) drop-shadow(0 0 80px rgba(232,194,106,.15));
}

.section-decor {
    position: absolute;
    pointer-events: none;
    opacity: .4;
    z-index: 0;
}

/* ============================================
   BONUS STUB PAGE
   ============================================ */
.bonus-stub {
    min-height: calc(100vh - 148px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    text-align: center;
}
.bonus-stub-card {
    max-width: 520px;
    padding: 2.5rem 2rem;
}
.spinner {
    width: 64px; height: 64px;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(16,185,129,.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 3rem; }
.mb-lg { margin-bottom: 3rem; }
.full-bleed { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

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

/* Body scroll lock when mobile menu open */
body.menu-open { overflow: hidden; }