/* ============================================
   DESIGN TOKENS - Vox Casino fiery identity
   Dark theme is the single production theme
   ============================================ */
:root,
.dark {
    --background: #0c0a09;
    --foreground: #fafaf9;
    --card: #1c1917;
    --card-foreground: #fafaf9;
    --popover: #1c1917;
    --popover-foreground: #fafaf9;
    --primary: #f97316;
    --primary-foreground: #1c1917;
    --secondary: #c2410c;
    --secondary-foreground: #fafaf9;
    --muted: #292524;
    --muted-foreground: #d6d3d1;
    --accent: #facc15;
    --accent-foreground: #1c1917;
    --destructive: #e41414;
    --destructive-foreground: #fafaf9;
    --border: #3f342d;
    --input: #1c1917;
    --ring: #fb923c;
    --orange-glow: rgba(249, 115, 22, 0.34);
    --gold-glow: rgba(250, 204, 21, 0.22);
    --font-display: "Unbounded", sans-serif;
    --font-body: "Outfit", sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 4rem;
    --space-3xl: 7.5rem;
    --radius: 20px;
    --header-height: 80px;
    --container: 1240px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

/* ============================================
   RESET & OVERFLOW SAFETY - predictable layouts
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; background: var(--background); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    color: var(--foreground);
    background:
        radial-gradient(circle at 12% 8%, rgba(249, 115, 22, 0.16), transparent 30rem),
        radial-gradient(circle at 88% 16%, rgba(250, 204, 21, 0.09), transparent 26rem),
        var(--background);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
}
img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > *, .card, .info-card, .bonus-card { min-width: 0; }
p, li, td, th { overflow-wrap: break-word; }
a, code { overflow-wrap: anywhere; }
pre, code, .code-block, [class*="code"] { max-width: 100%; overflow-x: auto; }
pre code, .code-block code { display: block; min-width: 0; white-space: pre; }
section, .hero, .cta-banner { overflow-x: clip; }
input, textarea, select { max-width: 100%; box-sizing: border-box; }

/* ============================================
   TYPOGRAPHY - Unbounded impact, Outfit clarity
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: -0.045em;
    margin: 0 0 var(--space-md);
    color: var(--foreground);
}
h1 { font-size: clamp(1.875rem, calc(4vw + 1rem), 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.625rem, calc(2.4vw + 1rem), 2.375rem); font-weight: 800; }
h3 { font-size: clamp(1.375rem, calc(1.2vw + 1rem), 1.75rem); font-weight: 700; }
h4 { font-size: clamp(1.125rem, calc(0.8vw + 1rem), 1.375rem); font-weight: 650; }
p { margin: 0 0 1.75rem; max-width: 72ch; }
a { color: #fdba74; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--accent); }
.small, small, .microcopy { font-size: 14px; color: var(--muted-foreground); }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================
   LAYOUT - containers, sections, hero scaffolding
   ============================================ */
.container, .header-inner, .footer-grid, .footer-bottom {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}
.section { padding-block: var(--space-2xl); }
.hero {
    position: relative;
    padding: calc(var(--header-height) + 3rem) 0 var(--space-2xl);
    background: linear-gradient(135deg, rgba(12,10,9,0.96), rgba(28,25,23,0.86));
}
.hero::before, .cta-banner::before {
    content: "";
    position: absolute;
    inset: -15% -10%;
    background: repeating-linear-gradient(135deg, transparent 0 42px, rgba(249,115,22,0.12) 43px 46px), radial-gradient(circle, rgba(249,115,22,0.18), transparent 56%);
    transform: rotate(-2deg);
    pointer-events: none;
}
.hero-grid, .two-column { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-xl); align-items: center; position: relative; }
.hero-media img, .section-image { border-radius: 28px; box-shadow: var(--shadow); border: 1px solid rgba(249,115,22,0.28); }
.grid, .card-grid, .info-grid, .stats-grid, .bonus-grid, .social-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

/* ============================================
   HEADER & NAVIGATION - mobile drawer first
   ============================================ */
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 2000; background: var(--primary); color: var(--primary-foreground); padding: .75rem 1rem; border-radius: 999px; }
.skip-link:focus { top: 1rem; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    background: var(--background);
    border-bottom: 1px solid rgba(249,115,22,0.22);
}
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); }
.site-brand { display: inline-flex; align-items: center; gap: .75rem; min-height: 48px; color: var(--foreground); text-decoration: none; flex-shrink: 0; }
.logo { width: 48px; height: 48px; border-radius: 14px; object-fit: contain; }
.brand-text { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.05em; }
.mobile-menu-toggle { z-index: 1001; width: 48px; height: 48px; display: inline-flex; flex-direction: column; justify-content: center; gap: 6px; border: 1px solid var(--border); border-radius: 14px; background: var(--card); color: var(--foreground); cursor: pointer; }
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; margin-inline: auto; background: currentColor; border-radius: 99px; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--background);
    overflow-y: auto;
    padding: var(--space-lg);
    border-top: 1px solid var(--border);
}
.primary-nav.is-open { display: block; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: stretch; gap: .5rem; }
.nav-list a { min-height: 48px; display: flex; align-items: center; padding: .75rem 1rem; border-radius: 14px; color: var(--foreground); text-decoration: none; font-weight: 700; }
.nav-list a:hover, .nav-list a:focus-visible { background: var(--muted); color: #fed7aa; }
.header-actions { display: grid; gap: .75rem; margin-top: var(--space-lg); }

/* ============================================
   BUTTONS & LINKS - molten orange conversion style
   ============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .85rem 1.25rem; border-radius: 999px; border: 1px solid transparent; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease-out, box-shadow .2s ease-out, background .2s ease-out; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--primary-foreground); background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 14px 36px var(--orange-glow); }
.btn-ghost { color: var(--foreground); background: rgba(255,255,255,0.03); border-color: rgba(249,115,22,0.38); }
.btn-lg { min-height: 56px; padding-inline: 1.6rem; }
.text-link { font-weight: 800; color: #fdba74; }

/* ============================================
   CARDS - content containers and reusable macros
   ============================================ */
.card, .info-card, .bonus-card, .summary-box, .callout-box, .review-card {
    border: 1px solid rgba(249,115,22,0.26);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(28,25,23,0.98), rgba(17,14,12,0.98));
    box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}
.info-card, .bonus-card { padding: var(--space-lg); transition: transform .2s ease-out, border-color .2s ease-out, box-shadow .2s ease-out; }
.info-card:hover, .bonus-card:hover, .review-card:hover { transform: scale(1.04); border-color: rgba(249,115,22,0.7); box-shadow: 0 24px 70px var(--orange-glow); }
.info-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: var(--space-md); border-radius: 16px; background: rgba(249,115,22,0.14); color: var(--accent); font-size: 1.65rem; }
.info-card-image, .bonus-card-image { width: 100%; border-radius: 16px; object-fit: cover; margin-bottom: var(--space-md); }
.bonus-card-image { max-height: 150px; object-fit: contain; }
.bonus-amount, .stat-number { display: block; margin: 0 0 .5rem; font-family: var(--font-display); font-weight: 900; line-height: 1; letter-spacing: -0.06em; color: transparent; background: linear-gradient(135deg, #f97316, #facc15); -webkit-background-clip: text; background-clip: text; }
.bonus-amount { font-size: clamp(2.2rem, 6vw, 4.5rem); }
.bonus-terms { font-size: 14px; color: var(--muted-foreground); margin-bottom: 1rem; }

/* ============================================
   ENGAGEMENT PATTERNS - GEO/CRO content breaks
   ============================================ */
.summary-box, .callout-box { padding: var(--space-lg); margin: var(--space-xl) 0; }
.summary-box { border-color: rgba(250,204,21,0.36); background: linear-gradient(135deg, rgba(250,204,21,0.09), rgba(249,115,22,0.08)); }
.callout-box { border-left: 5px solid var(--primary); }
.pull-quote, blockquote { margin: var(--space-xl) 0; padding: var(--space-lg); border-left: 5px solid var(--accent); color: var(--foreground); font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.35; background: rgba(28,25,23,0.72); border-radius: 0 var(--radius) var(--radius) 0; }
blockquote cite { display: block; margin-top: .75rem; font-family: var(--font-body); font-size: 14px; color: var(--muted-foreground); }
.stat-block { padding: var(--space-lg); text-align: center; border-radius: var(--radius); background: radial-gradient(circle at top, rgba(249,115,22,0.16), rgba(28,25,23,0.94)); border: 1px solid rgba(250,204,21,0.22); }
.stat-number { font-size: clamp(2rem, 5vw, 4rem); }
.stat-label { display: block; font-weight: 800; }
.stat-source { display: block; margin-top: .5rem; color: var(--muted-foreground); }
.trust-badges { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin: var(--space-lg) 0; }
.trust-badges span, .payment-icons span { display: inline-flex; min-height: 40px; align-items: center; padding: .5rem .8rem; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.03); font-weight: 800; color: var(--muted-foreground); }
.table-wrapper { min-width: 0; max-width: 100%; overflow-x: auto; margin: var(--space-xl) 0; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--card); }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border); }
th { font-family: var(--font-display); font-size: 14px; color: #fed7aa; }
.recommended, td.recommended { background: rgba(249,115,22,0.12); }
.social-proof-grid .review-card { padding: var(--space-lg); }

/* ============================================
   FAQ & DETAILS - native accessible accordions
   ============================================ */
.faq-accordion { display: grid; gap: var(--space-md); }
details, .faq-item { border: 1px solid rgba(249,115,22,0.28); border-radius: var(--radius); background: rgba(28,25,23,0.94); }
summary { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; cursor: pointer; font-family: var(--font-display); font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; flex-shrink: 0; color: var(--primary); font-size: 1.6rem; transition: transform .3s ease; }
details[open] { border-left: 5px solid var(--primary); }
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--muted-foreground); }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================
   CTA BANNER - full-width conversion band
   ============================================ */
.cta-banner { position: relative; padding: var(--space-2xl) 0; background: linear-gradient(135deg, #120b07, #25120a 48%, #0c0a09); border-block: 1px solid rgba(249,115,22,0.26); }
.cta-banner-inner { position: relative; text-align: center; }
.cta-banner-inner p { margin-inline: auto; }
.cta-actions { display: flex; flex-direction: column; gap: .75rem; justify-content: center; align-items: stretch; margin: var(--space-lg) auto .75rem; max-width: 520px; }

/* ============================================
   HERO CONTENT - badge, layout helpers
   ============================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: rgba(249,115,22,0.16);
    border: 1px solid rgba(249,115,22,0.38);
    color: #fdba74;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}
.hero-content { max-width: 640px; }
.hero-content h1 { margin-bottom: var(--space-lg); }
.hero-content p { font-size: 1.0625rem; }
.section-header { margin-bottom: var(--space-xl); }
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { max-width: 72ch; }

/* ============================================
   FOOTER - links, payments, license and 18+
   ============================================ */
.site-footer { padding: var(--space-2xl) 0 var(--space-lg); background: #080605; border-top: 1px solid rgba(249,115,22,0.22); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-xl); }
.footer-heading { font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-links a { display: inline-flex; min-height: 44px; align-items: center; color: var(--muted-foreground); text-decoration: none; }
.footer-links a:hover { color: #fdba74; }
.payment-icons { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-bottom { margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .5rem; color: var(--muted-foreground); font-size: 14px; }
.footer-bottom p, .license-note, .responsible { margin-bottom: 0; }

/* ============================================
   SITEMAP - clean list layout
   ============================================ */
.sitemap-list { display: grid; gap: var(--space-md); margin-top: var(--space-lg); }
.sitemap-item {
    padding: var(--space-lg);
    border: 1px solid rgba(249,115,22,0.26);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(28,25,23,0.98), rgba(17,14,12,0.98));
    transition: transform .2s ease-out, border-color .2s ease-out, box-shadow .2s ease-out;
}
.sitemap-item:hover { transform: scale(1.02); border-color: rgba(249,115,22,0.7); box-shadow: 0 24px 70px var(--orange-glow); }
.sitemap-item h3 { margin-bottom: .5rem; }
.sitemap-item h3 a { color: #fdba74; text-decoration: none; }
.sitemap-item h3 a:hover { color: var(--accent); }
.sitemap-item p { margin-bottom: 0; }

@media (min-width: 1024px) {
    .sitemap-item { padding: 2.5rem; }
}

/* ============================================
   ANIMATIONS - scroll reveal and reduced motion
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(26px); transition: opacity .6s ease-out, transform .6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE ENHANCEMENTS - tablet and desktop
   ============================================ */
@media (min-width: 768px) {
    .container, .header-inner, .footer-grid, .footer-bottom { width: min(100% - 3rem, var(--container)); }
    .section { padding-block: var(--space-3xl); }
    .grid, .card-grid, .info-grid, .bonus-grid, .social-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-actions { flex-direction: row; align-items: center; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .site-header { background: rgba(12,10,9,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
    .mobile-menu-toggle { display: none; }
    .primary-nav { display: flex; position: static; inset: auto; z-index: auto; padding: 0; border: 0; overflow: visible; background: transparent; align-items: center; gap: var(--space-lg); }
    .nav-list { flex-direction: row; align-items: center; overflow-x: auto; }
    .nav-list a { padding-inline: .75rem; white-space: nowrap; }
    .header-actions { display: flex; align-items: center; margin-top: 0; }
    .hero { padding-block: calc(var(--header-height) + 4rem) var(--space-3xl); }
    .hero-grid, .two-column { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: var(--space-2xl); }
    .info-grid, .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bonus-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1.35fr .8fr .8fr 1fr; }
    .cta-banner { padding-block: var(--space-3xl); }
    .info-card, .bonus-card, .summary-box, .callout-box, .review-card { padding: 2.5rem; }
}

@media (min-width: 1280px) {
    .container, .header-inner, .footer-grid, .footer-bottom { width: min(100% - 4rem, var(--container)); }
}
