/*
 * Vox Casino - Design System
 * Dark cinematic casino aesthetic with orange accents and golden rain motifs.
 * Fonts: Unbounded (display) + Manrope (body)
 */

/* ============================================
   DESIGN TOKENS - Dark theme is the only theme
   ============================================ */

:root {
    /* Backgrounds */
    --background: #0c0a09;
    --background-elevated: #1c1917;
    --card: #1c1917;
    --card-hover: #292524;

    /* Foregrounds */
    --foreground: #fafaf9;
    --foreground-muted: #d6d3d1;
    --foreground-subtle: #b2aca9;

    /* Brand */
    --primary: #ea580c;
    --primary-hover: #f97316;
    --primary-foreground: #0c0a09;

    /* Accents */
    --accent: #eab308;
    --accent-glow: rgba(234, 88, 12, 0.35);
    --accent-foreground: #0c0a09;

    /* Semantic */
    --secondary: #292524;
    --secondary-foreground: #fafaf9;
    --muted: #44403c;
    --muted-foreground: #b2aca9;
    --border: #44403c;
    --border-light: #57534e;
    --destructive: #e30d32;
    --destructive-foreground: #fafaf9;

    /* Fonts */
    --font-display: "Unbounded", sans-serif;
    --font-body: "Manrope", sans-serif;

    /* Font sizes */
    --fs-h1: clamp(2rem, 5vw, 3rem);
    --fs-h2: clamp(1.75rem, 4vw, 2.25rem);
    --fs-h3: clamp(1.375rem, 3vw, 1.75rem);
    --fs-body: 1.0625rem;
    --fs-small: 0.875rem;
    --fs-large: 1.25rem;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 100px;

    /* Layout */
    --container-max: 1200px;
    --header-height: 68px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Transitions */
    --transition: 250ms ease-out;
    --transition-fast: 150ms ease-out;
}

/* Dark class mirrors root - site is always dark */
.dark {
    --background: #0c0a09;
    --background-elevated: #1c1917;
    --card: #1c1917;
    --card-hover: #292524;
    --foreground: #fafaf9;
    --foreground-muted: #d6d3d1;
    --foreground-subtle: #b2aca9;
    --primary: #ea580c;
    --primary-hover: #f97316;
    --primary-foreground: #0c0a09;
    --accent: #eab308;
    --accent-glow: rgba(234, 88, 12, 0.35);
    --accent-foreground: #0c0a09;
    --secondary: #292524;
    --secondary-foreground: #fafaf9;
    --muted: #44403c;
    --muted-foreground: #b2aca9;
    --border: #44403c;
    --border-light: #57534e;
}

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

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

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

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

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

a {
    color: var(--primary-hover);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

ul, ol {
    list-style: none;
}

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

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

h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--foreground-muted);
}

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

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

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

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

.section {
    padding: 60px 0;
    scroll-margin-top: var(--header-height);
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

.section-dark {
    background: var(--background);
}

.section-elevated {
    background: var(--background-elevated);
}

.text-center {
    text-align: center;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

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

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
    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;
    color: var(--foreground);
}

.site-brand:hover {
    color: var(--foreground);
}

.logo {
    border-radius: var(--radius-sm);
    display: block;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

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

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

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--foreground-muted);
    transition: color var(--transition-fast);
    white-space: nowrap;
}

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

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

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

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

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

.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(-7px) rotate(-45deg);
}

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

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

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-md);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(100%);
        transition: transform var(--transition);
        display: flex;
        gap: var(--space-md);
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .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;
        padding: var(--space-sm) 0;
        font-size: 1.125rem;
    }

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 44px;
    text-decoration: none;
    white-space: nowrap;
    max-width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--primary-foreground);
    box-shadow: 0 0 24px var(--accent-glow);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-hover);
    background: rgba(234, 88, 12, 0.08);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
    min-height: 52px;
}

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

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--accent-glow);
    }
    50% {
        box-shadow: 0 0 0 8px transparent;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: 60px 0;
}

.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;
    background: linear-gradient(
        180deg,
        rgba(12, 10, 9, 0.7) 0%,
        rgba(12, 10, 9, 0.5) 40%,
        rgba(12, 10, 9, 0.95) 100%
    );
    z-index: 1;
}

/* Golden rain effect */
.golden-rain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.golden-rain::before,
.golden-rain::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(234, 179, 8, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.06) 0%, transparent 40%);
}

.rain-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: rain-fall linear infinite;
}

@keyframes rain-fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

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

.hero h1 {
    font-size: var(--fs-h1);
    max-width: 720px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: var(--fs-large);
    color: var(--foreground-muted);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
        padding: 80px 0;
    }
}

/* ============================================
   CARDS - Content containers
   ============================================ */

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    min-width: 0;
}

.card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 24px var(--accent-glow);
}

.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    min-width: 0;
}

/* ============================================
   GAME CARD GRID
   ============================================ */

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

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

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

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

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px var(--accent-glow);
    border-color: var(--primary);
}

.game-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--secondary);
}

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

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

.game-card-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.375rem;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.game-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--foreground-muted);
}

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

.bonus-highlight {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.bonus-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.bonus-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-hover);
    line-height: 1;
    letter-spacing: -0.03em;
}

.bonus-amount-secondary {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--accent);
}

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

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

.bonus-tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    position: relative;
}

.bonus-tier-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

/* ============================================
   STAT HIGHLIGHTS
   ============================================ */

.stat-highlight {
    text-align: center;
    padding: var(--space-md);
    min-width: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    color: var(--primary-hover);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-xs);
    overflow-wrap: break-word;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--foreground);
    list-style: none;
    user-select: none;
}

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

.faq-question-text {
    flex: 1;
    min-width: 0;
}

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

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) scaleY(0);
}

.faq-answer {
    padding: 0 16px 16px 16px;
}

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

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

.cta-banner-section {
    position: relative;
    padding: 60px 0;
    background: var(--background);
    overflow: clip;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-banner-section {
        padding: 100px 0;
    }
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(234, 88, 12, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 100%, rgba(234, 179, 8, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--background) 0%, var(--background-elevated) 100%);
    z-index: 0;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cta-banner-heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-h2);
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.cta-banner-subheading {
    font-size: var(--fs-large);
    color: var(--foreground-muted);
    margin-bottom: var(--space-lg);
}

.cta-microcopy {
    font-size: 0.8125rem;
    color: var(--foreground-subtle);
    margin-top: var(--space-md);
}

/* ============================================
   PAYMENT BADGES
   ============================================ */

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground-muted);
    min-height: 40px;
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

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

.star-rating {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

.star {
    color: var(--accent);
    font-size: 1rem;
    line-height: 1;
}

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

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.9375rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--foreground-muted);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

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

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

.comparison-table th {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--foreground);
    background: var(--card);
}

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

.comparison-table tr:hover td {
    background: var(--card-hover);
}

.comparison-table .col-highlight {
    background: rgba(234, 88, 12, 0.06);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

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

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */

.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.callout-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.callout p {
    color: var(--foreground-muted);
}

.callout-accent {
    border-left-color: var(--accent);
}

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */

.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    position: relative;
}

.summary-box::before {
    content: 'TL;DR';
    position: absolute;
    top: -10px;
    left: var(--space-lg);
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.summary-box ul {
    list-style: none;
    padding: 0;
}

.summary-box li {
    padding: var(--space-xs) 0;
    color: var(--foreground-muted);
    padding-left: var(--space-md);
    position: relative;
}

.summary-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
    color: var(--foreground);
    border-left: 4px solid var(--accent);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: normal;
    color: var(--foreground-subtle);
    margin-top: var(--space-sm);
}

/* ============================================
   STEP LIST (numbered guide)
   ============================================ */

.step-list {
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.step-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9375rem;
}

/* ============================================
   FEATURE GRID
   ============================================ */

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

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    min-width: 0;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(234, 88, 12, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   VIP TIERS
   ============================================ */

.vip-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.vip-tier {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
}

.vip-tier-featured {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(234, 179, 8, 0.15);
}

.vip-tier-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.vip-tier-cashback {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-hover);
    margin-bottom: var(--space-sm);
}

/* ============================================
   INLINE IMAGE
   ============================================ */

.inline-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin: var(--space-lg) 0;
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image-rounded {
    border-radius: var(--radius-lg);
}

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

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

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--foreground-subtle);
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: var(--foreground-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

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

.license-info {
    margin-top: var(--space-md);
}

.license-text {
    font-size: 0.8125rem;
    color: var(--foreground-subtle);
    margin-bottom: 4px;
}

.age-restriction {
    font-size: 0.8125rem;
    color: var(--foreground-subtle);
    line-height: 1.5;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: var(--space-xl) auto 0;
    padding: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--foreground-subtle);
}

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

.animate-on-scroll {
    transform: translateY(12px);
    transition: transform 0.6s ease-out;
    transition-delay: var(--delay, 0ms);
}

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

/* Respect reduced motion */
@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;
    }
}

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */

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

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

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

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

/* Mobile overflow fixes */
@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .cta-banner-content .btn {
        white-space: normal;
        max-width: 100%;
    }
    .stat-highlight {
        padding: var(--space-sm);
    }
}

/* ============================================
   PROVIDER GRID
   ============================================ */

.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

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

.provider-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.provider-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.provider-card img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
}

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

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

.sitemap-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
}

.sitemap-item a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--foreground);
}

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

.sitemap-item p {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    margin-top: var(--space-xs);
    margin-bottom: 0;
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
