/* ============================================
   DESIGN TOKENS
   Dark cinematic theme - no light/dark toggle.
   Neon red (primary), neon yellow (secondary),
   acid green (accent), obsidian (background).
   ============================================ */

:root {
    --background: #0b0e14;
    --foreground: #f5f1e8;
    --card: #11151c;
    --card-foreground: #f5f1e8;
    --popover: #11151c;
    --popover-foreground: #f5f1e8;
    --primary: #e02020;
    --primary-foreground: #000000;
    --secondary: #1e2532;
    --secondary-foreground: #facc15;
    --muted: #1a1f2a;
    --muted-foreground: #9fb0c3;
    --accent: #10b981;
    --accent-foreground: #000000;
    --destructive: #e02020;
    --destructive-foreground: #000000;
    --border: #2d3748;
    --input: #1e2532;
    --ring: #e02020;

    /* Semantic extras */
    --neon-red: #e02020;
    --neon-red-light: #ff4d4d;
    --neon-yellow: #facc15;
    --neon-green: #10b981;
    --obsidian: #07090e;
    --steel: #7d8aa1;
    --steel-light: #a8b5c5;
    --cream: #f5f1e8;

    /* Typography */
    --font-heading: "Unbounded", sans-serif;
    --font-body: "Manrope", sans-serif;

    /* Spacing - 8px base grid */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 100px;
    --space-6xl: 120px;

    /* Container */
    --max-width: 1200px;
    --header-height: 72px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows / glows */
    --glow-red: 0 0 20px rgba(224, 32, 32, 0.35), 0 0 40px rgba(224, 32, 32, 0.15);
    --glow-yellow: 0 0 20px rgba(250, 204, 21, 0.35), 0 0 40px rgba(250, 204, 21, 0.15);
    --glow-green: 0 0 20px rgba(16, 185, 129, 0.35), 0 0 40px rgba(16, 185, 129, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.6);

    /* Transitions */
    --transition: 300ms ease-out;
}

/* Make .dark identical - single dark theme, no toggle */
.dark {
    --background: #0b0e14;
    --foreground: #f5f1e8;
    --card: #11151c;
    --card-foreground: #f5f1e8;
    --popover: #11151c;
    --popover-foreground: #f5f1e8;
    --primary: #e02020;
    --primary-foreground: #000000;
    --secondary: #1e2532;
    --secondary-foreground: #facc15;
    --muted: #1a1f2a;
    --muted-foreground: #9fb0c3;
    --accent: #10b981;
    --accent-foreground: #000000;
    --destructive: #e02020;
    --destructive-foreground: #000000;
    --border: #2d3748;
    --input: #1e2532;
    --ring: #e02020;
}

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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

a {
    color: var(--neon-red-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--neon-yellow);
}

/* Inline links inside prose/content blocks must be distinguishable
   without relying on color - add underline per axe link-in-text-block */
.container-narrow p a,
.clown-coins-content p a,
.faq-answer p a,
.cta-banner-subtitle a,
.text-muted a,
.game-card-desc a,
.bonus-card p a {
    text-decoration: underline;
    text-decoration-color: rgba(255, 77, 77, 0.6);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.container-narrow p a:hover,
.clown-coins-content p a:hover,
.faq-answer p a:hover,
.cta-banner-subtitle a:hover,
.text-muted a:hover,
.game-card-desc a:hover,
.bonus-card p a:hover {
    text-decoration-color: var(--neon-yellow);
}

ul, ol {
    list-style: none;
}

section {
    overflow: clip;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: clamp(1.375rem, 3vw, 1.625rem);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

p {
    margin-bottom: var(--space-lg);
    max-width: 80ch;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

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

.container-narrow {
    max-width: 800px;
}

.section-pad {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

@media (max-width: 767px) {
    .section-pad {
        padding-top: calc(var(--header-height) + var(--space-xl));
        padding-bottom: var(--space-3xl);
    }
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(7, 9, 14, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    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-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

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

.logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(224, 32, 32, 0.4));
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--cream);
    white-space: nowrap;
}

.brand-name:hover {
    color: var(--neon-red);
}

/* Mobile toggle */
.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: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--cream);
    border-radius: 2px;
    transition: all var(--transition);
    margin: 0 auto;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) 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(-7px) rotate(-45deg);
}

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

.primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    min-height: 320px;
    background-color: var(--obsidian);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-xl);
    -webkit-overflow-scrolling: touch;
}

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

.nav-link {
    color: var(--steel-light);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: var(--space-xs) 0;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--neon-yellow);
}

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

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

    .primary-nav,
    .primary-nav.is-open {
        display: block;
        position: static;
        background-color: transparent;
        z-index: auto;
        overflow: visible;
        padding: 0;
    }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 1.125rem;
        padding: var(--space-md);
        border-radius: var(--radius-sm);
        background-color: var(--card);
        border: 1px solid var(--border);
    }

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

    .nav-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}

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

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

.btn-primary {
    background-color: var(--neon-red);
    color: #ffffff;
    border-color: var(--neon-red);
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    background-color: #c41e1e;
    border-color: #c41e1e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(224, 32, 32, 0.5), 0 0 60px rgba(224, 32, 32, 0.2);
}

.btn-ghost {
    background-color: transparent;
    color: var(--cream);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: var(--neon-red);
    color: var(--neon-red);
}

.btn-lg {
    min-height: 56px;
    font-size: 1.125rem;
    padding: 18px 40px;
}

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

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(224, 32, 32, 0.4), 0 0 40px rgba(224, 32, 32, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(224, 32, 32, 0.6), 0 0 80px rgba(224, 32, 32, 0.3);
    }
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: var(--space-6xl) 0;
    overflow: clip;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(7, 9, 14, 0.92) 0%, rgba(7, 9, 14, 0.7) 50%, rgba(7, 9, 14, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(250, 204, 21, 0.15);
    border: 1px solid var(--neon-yellow);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neon-yellow);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--steel-light);
    max-width: 600px;
    margin-bottom: var(--space-2xl);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ============================================
   BONUS BLOCKS
   ============================================ */

.bonus-block {
    background: linear-gradient(135deg, var(--card) 0%, var(--secondary) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.bonus-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-red), var(--neon-yellow), var(--neon-green));
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--neon-yellow);
    text-shadow: var(--glow-yellow);
}

.bonus-label {
    color: var(--steel-light);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

/* Bonus package cards */
.bonus-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.bonus-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--neon-yellow);
}

.bonus-card-tier {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.tier-1 { background-color: rgba(16, 185, 129, 0.15); color: var(--neon-green); border: 1px solid var(--neon-green); }
.tier-2 { background-color: rgba(250, 204, 21, 0.15); color: var(--neon-yellow); border: 1px solid var(--neon-yellow); }
.tier-3 { background-color: rgba(255, 59, 59, 0.15); color: var(--neon-red-light); border: 1px solid var(--neon-red); }

/* ============================================
   STAT BLOCK COMPONENT
   ============================================ */

.stat-block-section {
    padding: var(--space-3xl) 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover), var(--glow-red);
    border-color: var(--neon-red);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-color-green { color: var(--neon-green); }
.stat-color-yellow { color: var(--neon-yellow); }
.stat-color-red { color: var(--neon-red); }

.stat-label {
    font-size: 0.875rem;
    color: var(--steel-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

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

.faq-list {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--neon-red);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--glow-red);
}

.faq-item[open] {
    box-shadow: var(--glow-red);
}

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

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

.faq-question > span:first-child {
    flex: 1;
    min-width: 0;
}

.faq-arrow {
    color: var(--neon-red);
    font-size: 0.75rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--steel-light);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner-section {
    background-color: var(--obsidian);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: clip;
}

.cta-banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
}

.cta-banner-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
}

.cta-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.cta-banner-subtitle {
    font-size: 1.0625rem;
    color: var(--steel-light);
    margin-bottom: var(--space-2xl);
}

.cta-microcopy {
    font-size: 0.8125rem;
    color: var(--steel);
    font-weight: 300;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ============================================
   VIP PROGRESS BAR
   ============================================ */

.vip-progress-bar {
    width: 100%;
    height: 48px;
    background-color: var(--secondary);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.vip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-yellow), var(--neon-red));
    border-radius: var(--radius-full);
    transition: width 600ms ease-out;
    box-shadow: var(--glow-green);
}

.vip-levels {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.vip-level {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.vip-level-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--cream);
}

.vip-level-perk {
    font-size: 0.75rem;
    color: var(--steel-light);
}

/* ============================================
   GAME CARDS
   ============================================ */

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

@media (min-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.game-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-card-hover), var(--glow-green);
    border-color: var(--neon-green);
}

.game-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.game-card-body {
    padding: var(--space-lg);
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.game-card-desc {
    font-size: 0.875rem;
    color: var(--steel-light);
    margin-bottom: 0;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

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

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

.review-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    min-width: 0;
}

.review-score {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.review-platform {
    font-size: 0.875rem;
    color: var(--steel-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: var(--space-sm) 0;
}

.star {
    color: var(--neon-yellow);
    font-size: 1.125rem;
}

.star.empty {
    color: var(--border);
}

/* ============================================
   RESPONSIBLE GAMING BLOCK
   ============================================ */

.responsible-block {
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
}

.responsible-block p {
    color: var(--steel-light);
    margin-bottom: var(--space-md);
}

.license-seal {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--steel-light);
    margin: var(--space-xs);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--neon-red-light);
    color: var(--neon-red-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}

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

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

.summary-box h3 {
    color: var(--neon-yellow);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

/* Callout */
.callout {
    background-color: rgba(255, 59, 59, 0.08);
    border: 1px solid var(--neon-red);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
}

.callout-title {
    color: var(--neon-red-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
    color: var(--cream);
    border-left: 4px solid var(--neon-green);
    padding-left: var(--space-xl);
    margin: var(--space-2xl) 0;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Stat highlight (inline) */
.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: var(--space-lg) 0;
}

.stat-highlight-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
}

.stat-highlight-label {
    font-size: 0.875rem;
    color: var(--steel-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

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

.trust-badge {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--steel-light);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

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

.comparison-table th {
    background-color: var(--secondary);
    color: var(--cream);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
}

.comparison-table td {
    color: var(--steel-light);
    font-size: 0.9375rem;
}

.comparison-table .col-highlight {
    background-color: rgba(255, 59, 59, 0.08);
    border-left: 2px solid var(--neon-red);
    border-right: 2px solid var(--neon-red);
}

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

.site-footer {
    background-color: var(--obsidian);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

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

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--steel-light);
    font-size: 0.9375rem;
}

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

.footer-text {
    font-size: 0.875rem;
    color: var(--steel-light);
    margin-bottom: var(--space-sm);
}

.footer-warning {
    color: var(--neon-red-light) !important;
    font-weight: 600;
}

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

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--steel-light);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.copyright {
    font-size: 0.8125rem;
    color: var(--steel);
}

.footer-sitemap-link {
    font-size: 0.8125rem;
    color: var(--steel-light);
}

.footer-sitemap-link:hover {
    color: var(--neon-yellow);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
    transition-delay: var(--delay, 0ms);
}

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

/* Joker eyes glow flicker */
@keyframes eye-flicker {
    0%, 100% { opacity: 1; }
    48% { opacity: 1; }
    50% { opacity: 0.7; }
    52% { opacity: 1; }
    70% { opacity: 0.9; }
    72% { opacity: 1; }
}

.joker-eyes {
    animation: eye-flicker 4s ease-in-out infinite;
}

/* ============================================
   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-yellow { color: var(--neon-yellow); }
.text-red { color: var(--neon-red-light); }
.text-green { color: var(--neon-green); }
.text-muted { color: var(--steel-light); }

/* Sitemap page */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sitemap-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sitemap-item:hover {
    border-color: var(--neon-red);
    box-shadow: var(--glow-red);
}

.sitemap-item h3 {
    margin-bottom: var(--space-sm);
}

.sitemap-item h3 a {
    color: var(--cream);
}

.sitemap-item h3 a:hover {
    color: var(--neon-red);
}

.sitemap-item p {
    color: var(--steel-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Play stub - minimal */
.play-stub {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background);
    color: var(--foreground);
}

/* ============================================
   HOMEPAGE - Bonus Grid
   ============================================ */

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.bonus-main {
    min-width: 0;
}

.bonus-subtext {
    font-size: 1.125rem;
    color: var(--cream);
    margin-bottom: 0;
}

.bonus-subtext strong {
    color: var(--neon-yellow);
}

.bonus-mascot {
    display: flex;
    justify-content: center;
}

.bonus-mascot img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 59, 59, 0.3));
}

/* ============================================
   HOMEPAGE - Clown Coins Preview
   ============================================ */

.clown-coins-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .clown-coins-preview {
        grid-template-columns: 1fr 1fr;
    }
}

.clown-coins-content {
    min-width: 0;
}

.clown-coins-image {
    display: flex;
    justify-content: center;
}

.clown-coins-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card), var(--glow-yellow);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.feature-list li {
    padding-left: 0;
    color: var(--steel-light);
    font-size: 1rem;
}

/* ============================================
   HOMEPAGE - VIP Container
   ============================================ */

.vip-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================================
   HOMEPAGE - SEO Content spacing
   ============================================ */

.container-narrow h3 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.container-narrow h3:first-of-type {
    margin-top: 0;
}