/* ============================================================
   1GO CASINO - DESIGN SYSTEM
   Dark Racing Glamour Aesthetic
   Fonts: Cinzel (headings) + Rajdhani (body)
   Theme: Dark-only (no toggle)
   ============================================================ */

/* ============================================
   CSS VARIABLES - Dark Racing Glamour Theme
   ============================================ */
:root {
    /* Core palette */
    --obsidian: #0c0a09;
    --slate: #1e1b18;
    --slate-light: #2a2420;
    --storm-cloud: #3a342f;
    --cream: #fafaf9;
    --crimson: #ff5a6e;
    --crimson-dark: #d40026;
    --crimson-deep: #b91c1c;
    --gold: #ffd700;
    --gold-dim: #c9a227;

    /* Semantic tokens */
    --background: var(--obsidian);
    --foreground: var(--cream);
    --card: var(--slate);
    --card-foreground: var(--cream);
    --primary: var(--crimson);
    --primary-foreground: #ffffff;
    --secondary: var(--slate-light);
    --secondary-foreground: var(--cream);
    --muted: var(--storm-cloud);
    --muted-foreground: #a8a29e;
    --accent: var(--gold);
    --accent-foreground: var(--obsidian);
    --border: var(--storm-cloud);
    --input: var(--slate);
    --ring: var(--crimson);

    /* Typography */
    --font-heading: "Cinzel", Georgia, "Times New Roman", serif;
    --font-body: "Rajdhani", "Segoe UI", system-ui, sans-serif;

    /* Spacing scale (8px base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    --space-3xl: 64px;
    --space-4xl: 120px;

    /* Layout */
    --container-max: 1200px;
    --section-pad: 70px;
    --card-pad: 28px;
    --header-height: 60px;

    /* Effects */
    --glow-red: 0 0 20px rgba(239, 0, 39, 0.5), 0 0 40px rgba(239, 0, 39, 0.25);
    --glow-red-strong: 0 0 25px rgba(239, 0, 39, 0.7), 0 0 60px rgba(239, 0, 39, 0.35);
    --glow-gold: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    --transition: 300ms ease-out;
    --radius: 12px;
    --radius-sm: 8px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    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-color: var(--background);
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    color: var(--crimson);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cinzel for headings (trophy-style), Rajdhani for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--cream);
}

h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
}

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

h3 {
    font-size: 22px;
    font-weight: 600;
}

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

p {
    margin-bottom: 24px;
    overflow-wrap: break-word;
}

/* Text effect utilities */
.gold-text {
    color: var(--gold);
}

.red-text {
    color: var(--crimson);
}

.gold-glow {
    text-shadow: var(--glow-gold);
}

.red-glow {
    text-shadow: 0 0 12px rgba(239, 0, 39, 0.6), 0 0 24px rgba(239, 0, 39, 0.3);
}

.cinzel {
    font-family: var(--font-heading);
}

.rajdhani {
    font-family: var(--font-body);
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.section {
    padding: var(--section-pad) 0;
}

.full-bleed {
    width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(12, 10, 9, 0.98);
    border-bottom: 1px solid var(--storm-cloud);
    height: var(--header-height);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    height: var(--header-height);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-brand .logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 0 6px rgba(239, 0, 39, 0.5));
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.01em;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: var(--radius-sm);
    z-index: 1001;
    transition: background var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--storm-cloud);
}

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

/* Hamburger → X animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Primary navigation - hidden on mobile, drawer when open */
.primary-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    padding: 8px 4px;
    position: relative;
    transition: color var(--transition);
}

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

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

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

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    padding: 10px 20px;
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    background: transparent;
    cursor: pointer;
}

.btn-login:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}

.btn-register {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    padding: 10px 24px;
    background: var(--crimson-deep);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    box-shadow: 0 0 12px rgba(239, 0, 39, 0.3);
    border: none;
    cursor: pointer;
}

.btn-register:hover {
    background: #8f1313;
    box-shadow: var(--glow-red);
    transform: scale(1.05);
}

/* Mobile drawer */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--obsidian);
    z-index: 999;
    flex-direction: column;
    padding: 24px 20px;
    overflow-y: auto;
    gap: 0;
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
}

.primary-nav.is-open .nav-list li {
    border-bottom: 1px solid var(--storm-cloud);
}

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    font-size: 18px;
    padding: 8px 0;
}

.primary-nav.is-open .nav-link::after {
    display: none;
}

.primary-nav.is-open .header-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.primary-nav.is-open .btn-login,
.primary-nav.is-open .btn-register {
    text-align: center;
    padding: 14px 24px;
    font-size: 17px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--slate);
    border-top: 1px solid var(--storm-cloud);
    padding: 48px 16px 24px;
}

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    transition: color var(--transition);
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-pill {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    background: var(--slate-light);
    border: 1px solid var(--storm-cloud);
    border-radius: 20px;
    padding: 5px 12px;
}

.footer-text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 12px;
}

.footer-warnung {
    font-size: 14px;
    font-weight: 600;
    color: #ff8a99;
    line-height: 1.5;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--storm-cloud);
    text-align: center;
}

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

/* ============================================
   HERO BANNER
   Full-bleed dark obsidian, diagonal red streaks,
   confetti, glamour model right side
   ============================================ */
.hero {
    position: relative;
    padding: 70px 0;
    overflow: clip;
    background: var(--obsidian);
}

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

.hero-streaks {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, transparent 20%, rgba(239, 0, 39, 0.07) 35%, transparent 45%),
        linear-gradient(125deg, transparent 50%, rgba(239, 0, 39, 0.05) 60%, transparent 70%),
        radial-gradient(ellipse at 80% 40%, rgba(239, 0, 39, 0.08), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.04), transparent 50%);
}

.hero-confetti {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, var(--gold) 1px, transparent 2px),
        radial-gradient(circle at 85% 15%, var(--crimson) 1px, transparent 2px),
        radial-gradient(circle at 45% 70%, var(--gold) 1px, transparent 2px),
        radial-gradient(circle at 70% 85%, var(--crimson) 1px, transparent 2px),
        radial-gradient(circle at 30% 50%, var(--gold) 0.5px, transparent 1.5px),
        radial-gradient(circle at 60% 30%, var(--crimson) 0.5px, transparent 1.5px);
    background-size: 300px 300px, 250px 250px, 280px 280px, 320px 320px, 200px 200px, 240px 240px;
    opacity: 0.4;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--cream);
    text-shadow: var(--glow-gold);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--muted-foreground);
    margin-bottom: 28px;
}

.hero-cta {
    margin-bottom: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(239, 0, 39, 0.2));
}

/* ============================================
   CTA BUTTON - Shared between hero and CTA block
   ============================================ */
.cta-button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: var(--crimson-deep);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    box-shadow: var(--glow-red);
    transition: all var(--transition);
    text-align: center;
    line-height: 1.2;
}

.cta-button:hover {
    background: #8f1313;
    color: #ffffff;
    box-shadow: var(--glow-red-strong);
    transform: scale(1.05);
}

/* ============================================
   CTA BLOCK - Full-width conversion banner
   ============================================ */
.cta-section {
    padding: 60px 16px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.cta-card {
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(239, 0, 39, 0.12), transparent 70%);
    pointer-events: none;
}

.cta-block-title {
    position: relative;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--cream);
    text-shadow: 0 0 12px rgba(239, 0, 39, 0.4);
    margin-bottom: 12px;
}

.cta-block-subtitle {
    position: relative;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cream);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .cta-button {
    position: relative;
}

.cta-microcopy {
    position: relative;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDION
   Dark slate card, max 3 items, gold left border on open
   ============================================ */
.faq-accordion {
    max-width: var(--container-max);
    margin: 0 auto;
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--storm-cloud);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.is-open {
    border-left: 4px solid var(--gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--slate-light);
}

.faq-question-text {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-out;
}

.faq-answer-inner {
    padding: 0 20px 20px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cream);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   HOW-TO STEPS
   Numbered gold badges connected by vertical line
   ============================================ */
.how-to-steps {
    max-width: var(--container-max);
    margin: 0 auto;
    list-style: none;
    position: relative;
}

.how-to-steps::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--slate);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    z-index: 1;
    box-shadow: var(--glow-gold);
}

.step-content {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.step-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.step-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CARDS - Base content containers
   ============================================ */
.card {
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius);
    padding: var(--card-pad);
    min-width: 0;
}

.card-featured {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

/* ============================================
   USP STRIP - Three-column feature cards
   ============================================ */
.usp-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.usp-card {
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius);
    padding: var(--card-pad);
    text-align: center;
    transition: all var(--transition);
}

.usp-card:hover {
    border-color: var(--crimson);
    box-shadow: var(--glow-red);
}

.usp-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.usp-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 8px;
}

.usp-card p {
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   PROVIDER STRIP - Horizontal logo display
   ============================================ */
.provider-strip {
    background: var(--slate);
    border-top: 1px solid var(--storm-cloud);
    border-bottom: 1px solid var(--storm-cloud);
    padding: 24px 16px;
}

.provider-strip-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.provider-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--muted-foreground);
    padding: 8px 16px;
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.provider-logo:hover {
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

/* ============================================
   BONUS CARD - Highlighted bonus amount
   ============================================ */
.bonus-card {
    background: var(--slate);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: var(--card-pad);
    text-align: center;
    box-shadow: var(--glow-gold);
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--crimson);
    text-shadow: var(--glow-red);
    margin-bottom: 8px;
}

/* ============================================
   PAYMENT GRID - Icon grid for methods
   ============================================ */
.payment-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.payment-card {
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all var(--transition);
    min-width: 0;
}

.payment-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.payment-card-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.payment-card-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
}

/* ============================================
   GAME TILES - Category grid
   ============================================ */
.game-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.game-tile {
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius);
    padding: var(--card-pad);
    text-align: center;
    transition: all var(--transition);
    min-width: 0;
}

.game-tile:hover {
    border-color: var(--crimson);
    box-shadow: var(--glow-red);
    transform: translateY(-4px);
}

.game-tile-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.game-tile h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 6px;
}

.game-tile p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   VIP TIER CARDS - Progression comparison
   ============================================ */
.vip-tiers-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.vip-tier-card {
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius);
    padding: var(--card-pad);
    text-align: center;
    min-width: 0;
    transition: all var(--transition);
}

.vip-tier-card.tier-go {
    border-color: var(--crimson);
    box-shadow: var(--glow-red);
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 20px;
    border: 2px solid var(--gold);
    border-radius: 30px;
}

.vip-tier-card.tier-go .vip-tier-name {
    border-color: var(--crimson);
    color: #ff8a99;
    text-shadow: var(--glow-red);
}

.vip-tier-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--storm-cloud);
    font-size: 14px;
}

.vip-tier-row:last-child {
    border-bottom: none;
}

.vip-tier-row .label {
    color: var(--muted-foreground);
    text-align: left;
}

.vip-tier-row .value {
    color: var(--cream);
    font-weight: 600;
    text-align: right;
}

/* ============================================
   DATA TABLES - Styled comparison tables
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--storm-cloud);
}

.table-wrapper[tabindex] {
    outline: none;
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--slate);
    min-width: 500px;
}

.data-table thead {
    background: var(--slate-light);
}

.data-table th {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--storm-cloud);
    white-space: nowrap;
}

.data-table td {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--cream);
    padding: 12px 16px;
    border-bottom: 1px solid var(--storm-cloud);
}

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

.data-table tbody tr:nth-child(even) {
    background: rgba(58, 52, 47, 0.3);
}

.data-table .highlight {
    color: var(--crimson);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(239, 0, 39, 0.4);
}

/* ============================================
   TRUST BLOCK - License, security, 18+
   ============================================ */
.trust-block {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.trust-item {
    background: var(--slate);
    border: 1px solid var(--storm-cloud);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    min-width: 0;
}

.trust-item .icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

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

/* Callout / Highlight box */
.callout {
    background: var(--slate);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout p {
    margin: 0;
    color: var(--cream);
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 24px;
}

.stat-highlight .number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: var(--glow-gold);
    display: block;
    line-height: 1;
}

.stat-highlight .label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    margin-top: 8px;
    display: block;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--crimson);
    padding: 16px 24px;
    margin: 24px 0;
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 10px;
}

/* Summary / TL;DR box */
.summary-box {
    background: var(--slate-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.summary-box h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 10px;
}

.summary-box p {
    font-size: 15px;
    color: var(--cream);
    margin: 0;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 16px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
}

.section-heading p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   GENERIC CONTENT BLOCK
   ============================================ */
.content-block {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--cream);
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
    margin-top: 28px;
}

.content-block p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: 20px;
}

.content-block a,
.bonus-highlight-text p a,
p a {
    color: var(--crimson);
    text-decoration: underline;
    text-decoration-color: rgba(239, 0, 39, 0.6);
    text-underline-offset: 2px;
    transition: all var(--transition);
}

.content-block a:hover,
.bonus-highlight-text p a:hover,
p a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.content-block ul,
.content-block ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-block ul li,
.content-block ol li {
    font-size: 17px;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-block ul li {
    list-style: disc;
}

.content-block ol li {
    list-style: decimal;
}

.content-block blockquote {
    border-left: 4px solid var(--crimson);
    padding: 12px 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--cream);
}

/* ============================================
   ANIMATIONS - Fade-in slide-up on scroll
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.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 BREAKPOINTS
   Mobile-first → Tablet (768px) → Desktop (1024px)
   ============================================ */

/* Tablet and up */
@media (min-width: 768px) {
    :root {
        --section-pad: 90px;
        --card-pad: 32px;
    }

    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }

    .hero {
        padding: 90px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }

    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-block {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .cta-card {
        padding: 40px;
    }

    .cta-block-title {
        font-size: 32px;
    }

    .cta-section {
        padding: 80px 16px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .stat-highlight .number {
        font-size: 56px;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    :root {
        --section-pad: 120px;
        --header-height: 72px;
    }

    /* Show inline nav, hide hamburger */
    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }

    .hero {
        padding: 120px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-image img {
        max-height: 600px;
    }

    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vip-tiers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .footer-payments {
        gap: 6px;
    }

    .step-badge {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .how-to-steps::before {
        left: 21px;
    }
}

/* Large desktop */
@media (min-width: 1280px) {
    .hero-content {
        gap: 60px;
    }
}

/* ============================================
   BONUS HIGHLIGHT - Two-column layout
   ============================================ */
.bonus-highlight {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: 0 16px;
}

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

.bonus-highlight-image img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(239, 0, 39, 0.2));
}

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

    .bonus-highlight-image img {
        max-height: 600px;
    }
}

/* ============================================
   VIP PROGRESSION BAR
   ============================================ */
.vip-progression {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 0 16px;
    flex-wrap: wrap;
}

.vip-progression-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.vip-progression-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--slate);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    box-shadow: var(--glow-gold);
    margin-bottom: 12px;
    transition: all var(--transition);
}

.vip-progression-circle.tier-go {
    border-color: var(--crimson);
    color: #ff8a99;
    box-shadow: var(--glow-red);
}

.vip-progression-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

.vip-progression-line {
    flex: 0 0 30px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-dim));
    margin-top: 39px;
    align-self: flex-start;
}

@media (max-width: 767px) {
    .vip-progression {
        flex-direction: column;
        gap: 16px;
    }

    .vip-progression-step {
        flex: none;
    }

    .vip-progression-line {
        width: 2px;
        height: 24px;
        flex: none;
        margin: 0;
        background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.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;
}

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

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--crimson);
    color: #ffffff;
    padding: 8px 16px;
    z-index: 2000;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}