/* ============================================
   CASOOLA CASINO - DESIGN SYSTEM
   Techno-luxury minimalism with arcade sci-fi energy
   Dark theme only (no toggle per brief)
   Fonts: Orbitron (display) + Inter (body)
   ============================================ */

/* ============================================
   DESIGN TOKENS
   Dark theme - the only theme for this site
   ============================================ */
:root {
    /* Backgrounds */
    --background: #0A0A0F;
    --background-elevated: #0F0F14;
    --card: #13131A;
    --card-elevated: #1A1A24;
    --popover: #0F0F14;

    /* Foreground */
    --foreground: #E2E8F0;
    --foreground-bright: #F1F5F9;
    --muted-foreground: #94A3B8;
    --muted-foreground-bright: #A8B8CC;

    /* Accents */
    --primary: #7C3AED;
    --primary-glow: rgba(124, 58, 237, 0.35);
    --accent: #22D3EE;
    --accent-bright: #67E8F9;
    --accent-glow: rgba(34, 211, 238, 0.3);
    --lime: #A3E635;
    --lime-bright: #BEF264;
    --lime-glow: rgba(163, 230, 53, 0.3);

    /* Borders */
    --border: #2A2A38;
    --border-bright: #3F3F52;

    /* Semantic */
    --destructive: #F43F5E;
    --success: #22D3EE;

    /* Typography */
    --font-display: "Orbitron", sans-serif;
    --font-body: "Inter", sans-serif;

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

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 300ms ease-out;
    --transition-slow: 500ms ease-out;

    /* Container */
    --container-max: 1200px;
    --container-wide: 1280px;
}

/* Dark class mirrors :root - no light theme exists */
.dark {
    --background: #0A0A0F;
    --background-elevated: #0F0F14;
    --card: #13131A;
    --card-elevated: #1A1A24;
    --popover: #0F0F14;
    --foreground: #E2E8F0;
    --foreground-bright: #F1F5F9;
    --muted-foreground: #94A3B8;
    --primary: #7C3AED;
    --accent: #22D3EE;
    --lime: #A3E635;
    --border: #2A2A38;
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Orbitron for display, Inter for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--foreground-bright);
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.625rem);
    font-weight: 500;
}

h4 {
    font-size: clamp(1.125rem, 1vw + 0.75rem, 1.25rem);
    font-weight: 500;
}

p {
    margin: 0 0 var(--space-sm);
    max-width: 72ch;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    font-weight: 600;
    color: var(--foreground-bright);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

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

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

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

/* ============================================
   NEON CHIP FRAME
   Signature border with corner notches
   ============================================ */
.chip-frame {
    position: relative;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-md);
    background: var(--card);
}

.chip-frame::before,
.chip-frame::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent);
    pointer-events: none;
}

.chip-frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: var(--radius-sm);
}

.chip-frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: var(--radius-sm);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    touch-action: manipulation;
}

.btn-primary {
    background: var(--accent);
    color: var(--background);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-bright);
    color: var(--background);
    box-shadow: 0 0 24px var(--accent-glow);
    transform: translateY(-1px);
}

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

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

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 12px var(--accent-glow); }
    50% { box-shadow: 0 0 32px var(--accent-glow), 0 0 48px var(--accent-glow); }
}

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

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

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

.site-brand .logo {
    height: 40px;
    width: 40px;
    border-radius: var(--radius-sm);
}

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

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

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

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.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: transparent;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    transition: border-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--accent);
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--transition-base);
    margin: 0 auto;
}

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

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

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

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--background);
    z-index: 999;
    padding: var(--space-lg) var(--space-sm);
    overflow-y: auto;
    gap: var(--space-md);
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
}

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

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

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

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

.primary-nav.is-open .nav-cta-group .btn {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
    overflow-x: clip;
}

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

.hero-content {
    max-width: 640px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    font-weight: 700;
    color: var(--foreground-bright);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.hero h1 .accent-text {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
    color: var(--muted-foreground-bright);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }
}

/* ============================================
   INFO CARD GRID
   ============================================ */
.info-card-grid-section {
    padding: var(--space-xl) var(--space-sm);
    max-width: var(--container-wide);
    margin: 0 auto;
}

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

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

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

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

.info-card {
    padding: var(--space-lg);
    background: var(--card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 32px var(--primary-glow);
}

.info-card-image {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.info-card-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-sm);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

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

.info-card-description {
    font-size: 16px;
    color: var(--muted-foreground-bright);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    flex-grow: 1;
}

.info-card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-card-link:hover {
    color: var(--accent-bright);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: var(--space-xl) var(--space-sm);
    max-width: var(--container-wide);
    margin: 0 auto;
}

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

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

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

.faq-item {
    background: var(--card-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground-bright);
    transition: color var(--transition-fast);
    min-height: 44px;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question-text {
    flex: 1;
    padding-right: var(--space-sm);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
}

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner-section {
    padding: var(--space-xl) var(--space-sm);
    max-width: var(--container-wide);
    margin: 0 auto;
}

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

.cta-banner-container {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    font-weight: 600;
    color: var(--foreground-bright);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.cta-banner-subtext {
    font-size: 17px;
    color: var(--muted-foreground-bright);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-banner-container .btn {
    position: relative;
    z-index: 1;
}

.cta-micro-copy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-elevated);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) var(--space-sm) var(--space-lg);
}

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

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground-bright);
    margin-bottom: var(--space-sm);
}

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

.footer-link {
    color: var(--muted-foreground-bright);
    font-size: 16px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent);
}

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground-bright);
}

.license-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: var(--card);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.license-text {
    font-size: 14px;
    color: var(--muted-foreground-bright);
    line-height: 1.5;
}

.footer-notice {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

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

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

/* ============================================
   ENGAGEMENT & CRO PATTERNS
   ============================================ */

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

.summary-box h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

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

/* Callout / Highlight Box */
.callout-box {
    padding: var(--space-md) var(--space-lg);
    background: var(--card-elevated);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    margin: var(--space-lg) 0;
}

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

/* Stat Highlight */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
}

.stat-highlight .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw + 0.5rem, 2.625rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-highlight .stat-label {
    font-size: 16px;
    color: var(--muted-foreground-bright);
}

.stat-highlight .stat-source {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

/* Pull Quote */
.pull-quote {
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    border-left: 4px solid var(--accent);
    background: var(--card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pull-quote blockquote {
    margin: 0 0 var(--space-sm);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--foreground-bright);
    line-height: 1.5;
}

.pull-quote cite {
    font-size: 16px;
    color: var(--muted-foreground-bright);
    font-style: normal;
}

/* Details / Summary (native accordion) */
details {
    background: var(--card-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

details summary {
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-weight: 500;
    color: var(--foreground-bright);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 24px;
    color: var(--accent);
    transition: transform var(--transition-base);
}

details[open] summary::after {
    transform: rotate(45deg);
}

details[open] summary {
    border-bottom: 1px solid var(--border);
}

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

.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);
    font-size: 14px;
    color: var(--muted-foreground-bright);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 16px;
}

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

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

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

.comparison-table .recommended {
    background: var(--card-elevated);
    border-left: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
}

.comparison-table .recommended th {
    color: var(--accent);
}

/* Social Proof / Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.testimonial-card .testimonial-text {
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.testimonial-card .testimonial-author {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Generic Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 16px;
    display: block;
    overflow-x: auto;
}

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

.data-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--foreground-bright);
    background: var(--card-elevated);
}

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

/* Content Block */
.content-block {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-sm);
}

@media (min-width: 1024px) {
    .content-block {
        padding: var(--space-3xl) var(--space-sm);
    }
}

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

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

.content-block p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.split-text h2 {
    margin-bottom: var(--space-md);
}

.split-text p {
    margin-bottom: var(--space-sm);
}

/* ============================================
   HERO STATS & CTA GROUP
   ============================================ */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

.hero-visual {
    margin-top: var(--space-xl);
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: center;
    }

    .hero-visual {
        margin-top: 0;
    }
}

/* ============================================
   WELCOME BONUS SECTION
   ============================================ */
.welcome-bonus-section {
    padding: var(--space-xl) 0;
}

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

.welcome-bonus-section .section-heading {
    margin-bottom: var(--space-md);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    text-align: center;
    color: var(--muted-foreground-bright);
    line-height: 1.7;
}

.welcome-bonus-section .info-card-grid {
    max-width: var(--container-wide);
    margin: 0 auto;
}

.welcome-bonus-section .callout-box {
    max-width: 800px;
    margin: var(--space-xl) auto 0;
}

/* ============================================
   CRYPTO & TRUST SECTION
   ============================================ */
.crypto-trust-section {
    padding: var(--space-xl) 0;
}

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

.crypto-trust-section .split-layout {
    align-items: center;
}

.crypto-trust-section .split-text h2 {
    margin-bottom: var(--space-md);
}

.crypto-trust-section .split-text p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.payment-visual {
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
}

.payment-visual img {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
}

/* ============================================
   SEO CONTENT BLOCK
   ============================================ */
.content-block article h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

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

.content-block article p {
    line-height: 1.7;
}

.content-block article p a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent-glow);
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.content-block article p a:hover {
    color: var(--accent-bright);
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.sitemap-item {
    padding: var(--space-lg);
}

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

.sitemap-item h3 a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sitemap-item h3 a:hover {
    color: var(--accent-bright);
}

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

/* ============================================
   JACKPOT & CRASH GRID (spiele.html)
   ============================================ */
@media (min-width: 768px) {
    .jackpot-crash-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered card animations */
.info-card-grid .info-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.animate-on-scroll.is-visible .info-card:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll.is-visible .info-card:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll.is-visible .info-card:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll.is-visible .info-card:nth-child(4) { transition-delay: 300ms; }
.animate-on-scroll.is-visible .info-card:nth-child(5) { transition-delay: 400ms; }
.animate-on-scroll.is-visible .info-card:nth-child(6) { transition-delay: 500ms; }

/* ============================================
   FLOATING MASCOT ANIMATION
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* ============================================
   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(--accent);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

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