/* ============================================
   DESIGN SYSTEM - Jokery Casino
   Noir-Joker Cinematic Theme (Dark-only)
   Fonts: Cinzel Decorative (display) + Manrope (body)
   Colors: Obsidian black, neon red, electric yellow, neon green
   ============================================ */

:root {
    /* Background - near-black obsidian with subtle red undertone */
    --background: #0a0608;
    --background-deep: #050304;
    --foreground: #f5efe2;       /* bone cream */

    /* Card surfaces - rich black velvet */
    --card: #14100e;
    --card-hover: #1a1410;
    --card-foreground: #f5efe2;

    /* Secondary surfaces */
    --secondary: #1a1410;
    --secondary-foreground: #f5efe2;

    /* Muted - gray-green like fog over neon */
    --muted: #241c1a;
    --muted-foreground: #9ca3a8;
    --border: #2a2422;
    --border-hover: #3d342f;

    /* Primary - neon red like laser-lit smoke (darkened for WCAG AA contrast with white text) */
    --primary: #e02020;
    --primary-hover: #c41818;
    --primary-foreground: #ffffff;

    /* Accent - electric yellow like hazard tape */
    --accent: #fde047;
    --accent-foreground: #0a0608;

    /* Tertiary - glowing chartreuse for speed */
    --tertiary: #4ade80;
    --tertiary-glow: rgba(74, 222, 128, 0.4);

    /* Destructive */
    --destructive: #ef4444;

    /* Rings */
    --ring: #ff2b2b;
    --ring-yellow: #fde047;

    /* Shadows */
    --shadow-red-glow: 0 8px 32px rgba(255, 43, 43, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-lift: 0 12px 40px rgba(255, 43, 43, 0.3);

    /* Typography */
    --font-display: "Cinzel Decorative", "Times New Roman", serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Spacing rhythm - 8px base unit */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 72px;
    --space-3xl: 120px;

    /* Layout */
    --max-width: 1240px;
    --header-height: 72px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --ease-out: 200ms ease-out;
    --ease-fade: 400ms ease-out;
}

/* Dark class mirrors :root - single dark theme, no toggle */
.dark {
    --background: #0a0608;
    --background-deep: #050304;
    --foreground: #f5efe2;
    --card: #14100e;
    --card-hover: #1a1410;
    --card-foreground: #f5efe2;
    --secondary: #1a1410;
    --secondary-foreground: #f5efe2;
    --muted: #241c1a;
    --muted-foreground: #9ca3a8;
    --border: #2a2422;
    --border-hover: #3d342f;
    --primary: #e02020;
    --primary-hover: #c41818;
    --primary-foreground: #ffffff;
    --accent: #fde047;
    --accent-foreground: #0a0608;
    --tertiary: #4ade80;
    --tertiary-glow: rgba(74, 222, 128, 0.4);
    --destructive: #ef4444;
    --ring: #ff2b2b;
    --ring-yellow: #fde047;
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th {
    overflow-wrap: break-word;
}

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

a:hover {
    color: var(--primary-hover);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel Decorative for theatrical headings,
   Manrope for clean body text.
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--foreground);
}

h1 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
}

h2 {
    font-size: 26px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 700;
}

h4 {
    font-size: 18px;
    font-weight: 700;
}

p {
    margin-bottom: 28px;
}

p:last-child {
    margin-bottom: 0;
}

.caption, .micro {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

strong {
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 768px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
}

@media (min-width: 1024px) {
    h1 { font-size: 52px; }
    h2 { font-size: 38px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
}

/* ============================================
   LAYOUT - Container & sections
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

.section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-3xl) 0;
    }
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--muted-foreground);
    font-size: 17px;
}

/* ============================================
   HEADER - Sticky, dark, with neon logo
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 6, 8, 0.95);
    border-bottom: 1px solid var(--border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 var(--space-lg);
    }
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 0 6px rgba(255, 43, 43, 0.4));
}

.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

.brand-accent {
    color: var(--primary);
}

/* ============================================
   PRIMARY NAVIGATION - Desktop inline / Mobile drawer
   ============================================ */

.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--muted-foreground);
    padding: 8px 0;
    position: relative;
    transition: color var(--ease-out);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--foreground);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobile: hide inline nav, show burger */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.burger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--ease-out);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary);
}

@media (max-width: 1023px) {
    /* Remove backdrop-filter on mobile so it doesn't trap position:fixed nav */
    .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - var(--header-height));
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: var(--space-lg);
        gap: var(--space-lg);
        overflow-y: auto;
        display: none;
        z-index: 999;
    }

    .primary-nav.is-open {
        display: flex;
        visibility: visible;
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 17px;
        padding: var(--space-sm) 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta-group {
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-md);
    }

    .nav-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}

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

/* Mobile backdrop */
.mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--ease-out);
}

.mobile-backdrop.is-visible {
    display: block;
    opacity: 1;
}

@media (min-width: 1024px) {
    .mobile-backdrop {
        display: none !important;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--ease-out);
    min-height: 48px;
    white-space: nowrap;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 20px;
    min-height: 40px;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 16px rgba(255, 43, 43, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 43, 43, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 43, 43, 0.6);
    }
}

/* ============================================
   CTA BANNER - Full-bleed conversion section
   ============================================ */

.cta-banner-section {
    position: relative;
    background: var(--background-deep);
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    overflow: clip;
}

@media (min-width: 1024px) {
    .cta-banner-section {
        padding: var(--space-3xl) var(--space-lg);
    }
}

.venetian-blind-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 20px,
        rgba(255, 43, 43, 0.03) 20px,
        rgba(255, 43, 43, 0.03) 40px
    );
    pointer-events: none;
}

.venetian-blind-overlay-card {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 12px,
        rgba(0, 0, 0, 0.3) 12px,
        rgba(0, 0, 0, 0.3) 24px
    );
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.joker-grin-divider {
    width: 80px;
    height: 3px;
    margin: 0 auto var(--space-md);
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--primary);
    animation: grin-draw 600ms ease-out forwards;
}

@keyframes grin-draw {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

.cta-banner-heading {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px rgba(255, 43, 43, 0.4);
}

@media (min-width: 768px) {
    .cta-banner-heading {
        font-size: 38px;
    }
}

@media (min-width: 1024px) {
    .cta-banner-heading {
        font-size: 44px;
    }
}

.cta-banner-subtext {
    font-size: 17px;
    color: var(--foreground);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.cta-banner-btn {
    font-size: 18px;
    padding: 16px 36px;
}

.cta-banner-micro {
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--muted-foreground);
    letter-spacing: 0.03em;
}

/* ============================================
   CARD GRID - Universal content cards
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

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

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(var(--grid-columns, 3), minmax(0, 1fr));
    }
}

.content-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--ease-out), box-shadow var(--ease-out), border-color var(--ease-out);
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border-color: var(--border-hover);
}

.card-grin-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 0 3px;
    opacity: 0.7;
    transition: opacity var(--ease-out);
}

.content-card:hover .card-grin-corner {
    opacity: 1;
    box-shadow: 0 0 8px var(--primary);
}

.card-image-zone {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--background-deep);
}

.card-image-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .card-body {
        padding: var(--space-lg);
    }
}

.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.card-heading {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .card-heading {
        font-size: 26px;
    }
}

.card-text {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--space-md);
}

.card-text a,
.trust-item p a,
.callout p a,
.summary-box p a,
.faq-answer p a,
.faq-answer a {
    color: #ff5c5c;
    text-decoration: underline;
    text-decoration-color: rgba(255, 92, 92, 0.5);
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
    transition: color var(--ease-out), text-decoration-color var(--ease-out);
}

.card-text a:hover,
.trust-item p a:hover,
.callout p a:hover,
.summary-box p a:hover,
.faq-answer p a:hover,
.faq-answer a:hover {
    color: var(--primary-hover);
    text-decoration-color: var(--primary-hover);
}

.card-link {
    font-size: 15px;
    font-weight: 600;
    color: #ff5c5c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--ease-out), color var(--ease-out);
}

.card-link:hover {
    color: #ff8080;
    gap: 10px;
}

.card-link::after {
    content: '\2192';
}

/* ============================================
   STAT BLOCK - Large numeric highlights
   ============================================ */

.stat-block-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    text-align: center;
}

@media (min-width: 768px) {
    .stat-block-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
    }

    .stat-unit {
        border-right: 1px solid var(--border);
        padding-right: var(--space-xl);
    }

    .stat-unit:last-child {
        border-right: none;
        padding-right: 0;
    }
}

.stat-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 16px rgba(255, 43, 43, 0.4);
    line-height: 1;
}

.stat-number-green {
    color: var(--tertiary);
    text-shadow: 0 0 16px var(--tertiary-glow);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 64px;
    }
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--ease-out), box-shadow var(--ease-out), transform var(--ease-out);
}

.faq-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 43, 43, 0.15);
}

.faq-item[open] {
    border-left-color: var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md);
    cursor: pointer;
    list-style: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    min-height: 48px;
}

@media (min-width: 768px) {
    .faq-question {
        padding: var(--space-lg);
        font-size: 17px;
    }
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
}

.faq-plus-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-plus-icon::before,
.faq-plus-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    transition: transform var(--ease-out);
}

.faq-plus-icon::before {
    width: 16px;
    height: 2px;
}

.faq-plus-icon::after {
    width: 2px;
    height: 16px;
}

.faq-item[open] .faq-plus-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    overflow: hidden;
}

@media (min-width: 768px) {
    .faq-answer {
        padding: 0 var(--space-lg) var(--space-lg);
    }
}

.faq-answer p {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
    .summary-box {
        padding: var(--space-lg);
    }
}

.summary-box-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.summary-box p {
    margin-bottom: 0;
    color: var(--foreground);
}

/* Callout / highlight box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    box-shadow: 0 0 20px rgba(255, 43, 43, 0.1);
}

@media (min-width: 768px) {
    .callout {
        padding: var(--space-lg);
    }
}

.callout-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff5c5c;
    margin-bottom: var(--space-sm);
}

.callout p:last-child {
    margin-bottom: 0;
}

/* Pull quote */
.pull-quote {
    border-left: 3px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .pull-quote {
        font-size: 26px;
        padding: var(--space-lg) var(--space-xl);
    }
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Comparison table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.comparison-table-wrapper:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-table th {
    background: var(--card);
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--foreground);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.06em;
}

.comparison-table td {
    color: var(--muted-foreground);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .col-highlight {
    background: rgba(255, 43, 43, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table .col-highlight th {
    color: var(--primary);
}

/* Trust badges row */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
}

.trust-badge-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--card);
}

/* Prose / content body */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose p {
    margin-bottom: var(--space-md);
    color: var(--foreground);
    line-height: 1.7;
}

.prose h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.prose h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.prose ul, .prose ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.prose li {
    margin-bottom: var(--space-xs);
    color: var(--foreground);
    line-height: 1.6;
}

.prose a {
    color: #ff5c5c;
    text-decoration: underline;
    text-decoration-color: rgba(255, 92, 92, 0.5);
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
    transition: color var(--ease-out), text-decoration-color var(--ease-out);
}

.prose a:hover {
    color: #ff8080;
    text-decoration-color: #ff8080;
}

.prose ul li::marker {
    color: var(--primary);
}

.prose ol li::marker {
    color: var(--accent);
    font-weight: 700;
}

.prose blockquote {
    border-left: 3px solid var(--primary);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    color: var(--muted-foreground);
    font-style: italic;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
}

.prose th, .prose td {
    padding: var(--space-sm);
    border: 1px solid var(--border);
    text-align: left;
}

.prose th {
    background: var(--card);
    color: var(--foreground);
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .footer-inner {
        padding: 0 var(--space-lg);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

.footer-heading::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin-bottom: var(--space-sm);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-links span {
    font-size: 15px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--ease-out);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .footer-trust {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.trust-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    color: #b8bfc4;
    background: var(--card);
    letter-spacing: 0.05em;
    filter: grayscale(1);
    opacity: 0.85;
}

.footer-bottom {
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--ease-fade), transform var(--ease-fade);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY
   ============================================ */

.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;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-tertiary { color: var(--tertiary); }
.text-muted { color: var(--muted-foreground); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ============================================
   STUB PAGE - win.html visually empty
   ============================================ */

main > h1:only-child {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HERO SECTION - Cinematic full-bleed
   ============================================ */

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--background-deep);
    overflow: clip;
    padding: var(--space-2xl) 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(255, 43, 43, 0.12) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.hero-blinds {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 20px,
        rgba(255, 43, 43, 0.04) 20px,
        rgba(255, 43, 43, 0.04) 40px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }
}

.hero-text {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding: 6px 14px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    background: rgba(253, 224, 71, 0.05);
    margin-bottom: var(--space-md);
}

.hero-text h1 {
    font-size: 32px;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 24px rgba(255, 43, 43, 0.3);
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 56px;
    }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

@media (min-width: 768px) {
    .hero-cta-group {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .hero-cta-group {
        justify-content: flex-start;
    }
}

.hero-cta {
    font-size: 18px;
    padding: 16px 36px;
}

.hero-cta-secondary {
    font-size: 18px;
    padding: 16px 36px;
}

.hero-micro {
    margin-top: var(--space-md);
    font-size: 13px;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

.hero-mascot {
    flex: 0 0 auto;
    max-width: 320px;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-mascot {
        max-width: 420px;
    }
}

@media (min-width: 1024px) {
    .hero-mascot {
        max-width: 480px;
    }
}

.hero-mascot img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 43, 43, 0.3));
}

.hero-grin {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary);
    opacity: 0.6;
}

/* ============================================
   CRYPTO SECTION
   ============================================ */

.section-crypto {
    background: linear-gradient(
        180deg,
        var(--background) 0%,
        rgba(74, 222, 128, 0.03) 50%,
        var(--background) 100%
    );
}

.crypto-methods {
    max-width: 760px;
    margin: var(--space-xl) auto 0;
    text-align: center;
}

.crypto-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin: var(--space-md) 0;
}

.crypto-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--tertiary);
    background: var(--card);
    letter-spacing: 0.05em;
    transition: all var(--ease-out);
}

.crypto-pill:hover {
    border-color: var(--tertiary);
    box-shadow: 0 0 12px var(--tertiary-glow);
    transform: translateY(-2px);
}

.crypto-cta {
    margin-top: var(--space-md);
    font-size: 15px;
}

.crypto-cta a {
    color: var(--tertiary);
    font-weight: 600;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.section-trust {
    background: var(--background-deep);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.trust-item {
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: var(--radius-md);
    transition: transform var(--ease-out), box-shadow var(--ease-out);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red-glow);
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.trust-item p {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Tight section spacing for stat band */
.section-tight {
    padding: var(--space-xl) 0;
}

@media (min-width: 1024px) {
    .section-tight {
        padding: var(--space-2xl) 0;
    }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 860px;
    margin: 0 auto;
}

.sitemap-item {
    position: relative;
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: transform var(--ease-out), box-shadow var(--ease-out), border-color var(--ease-out);
}

.sitemap-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border-color: var(--border-hover);
}

.sitemap-item-grin {
    flex-shrink: 0;
    width: 40px;
    height: 3px;
    margin-top: 18px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary);
    opacity: 0.7;
    transition: opacity var(--ease-out);
}

.sitemap-item:hover .sitemap-item-grin {
    opacity: 1;
}

.sitemap-item-body {
    flex: 1;
    min-width: 0;
}

.sitemap-item-body h3 {
    font-size: 20px;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.sitemap-item-body h3 a {
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--ease-out);
}

.sitemap-item-body h3 a:hover {
    color: var(--primary);
}

.sitemap-item-body p {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .sitemap-item {
        padding: var(--space-lg);
    }

    .sitemap-item-grin {
        width: 48px;
        margin-top: 22px;
    }

    .sitemap-item-body h3 {
        font-size: 22px;
    }

    .sitemap-item-body p {
        font-size: 16px;
    }
}

/* ============================================
   SLOTS PAGE - Filter Controls & Clown Coins
   ============================================ */

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 20px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    background: var(--card);
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all var(--ease-out);
    min-height: 44px;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--foreground);
    transform: translateY(-2px);
}

.filter-btn.is-active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(255, 43, 43, 0.3);
}

.clown-coins-spotlight {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .clown-coins-spotlight {
        flex-direction: row;
        align-items: flex-start;
    }
}

.clown-coins-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
}

.clown-coins-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    filter: drop-shadow(0 0 30px rgba(255, 43, 43, 0.2));
}

.clown-coins-details {
    flex: 1;
    min-width: 0;
}

.clown-coins-details h3 {
    margin-bottom: var(--space-md);
}

.clown-coins-details .btn {
    margin-top: var(--space-md);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}