/*
 * ROBY CASINO - CYBERPUNK NEON-NOIR DESIGN SYSTEM
 * Dark mode only. No theme toggle.
 * Fonts: Orbitron (display) + Rajdhani (body)
 * Palette: neon blue / purple / green on deep space obsidian
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Backgrounds */
    --background: #020617;
    --bg-card: #0f172a;
    --bg-elevated: #1e293b;

    /* Foregrounds */
    --foreground: #ffffff;
    --fg-secondary: #cbd5e1;
    --fg-muted: #b8c4d4;

    /* Neon accents */
    --primary: #00f0ff;
    --primary-foreground: #000000;
    --neon-purple: #a855f7;
    --accent: #00ff41;
    --accent-foreground: #000000;

    /* Semantic */
    --secondary: #1e293b;
    --secondary-foreground: #f1f5f9;
    --muted: #334155;
    --muted-foreground: #b8c4d4;
    --destructive: #eb003b;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --border-neon: rgba(0, 240, 255, 0.3);
    --input: #1e293b;
    --ring: #00f0ff;

    /* Glow effects */
    --glow-primary: 0 0 20px rgba(0, 240, 255, 0.4);
    --glow-accent: 0 0 20px rgba(0, 255, 65, 0.4);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.4);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;

    /* Spacing */
    --section-gap: 60px;
    --component-padding: 24px;

    /* Transitions */
    --transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
        --section-gap: 80px;
        --component-padding: 32px;
    }
}

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

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

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

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

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

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

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--foreground);
}

h1 {
    font-size: 28px;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 24px;
    letter-spacing: 0.02em;
}

h3 {
    font-size: 20px;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
}

p {
    margin: 0 0 28px;
}

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--foreground);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    margin-bottom: 16px;
}

.section-description {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg-secondary);
    max-width: 700px;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid > * {
    min-width: 0;
}

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

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

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.split__text,
.split__image {
    flex: 1;
    min-width: 0;
}

.split__image img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--border);
}

@media (min-width: 768px) {
    .split {
        flex-direction: row;
        gap: 60px;
    }

    .split--reverse {
        flex-direction: row-reverse;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #020617;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .site-header {
        background: rgba(2, 6, 23, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 16px;
}

/* Brand */
.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    background: rgba(0, 240, 255, 0.08);
    border: 2px solid var(--primary);
    border-radius: 6px;
    box-shadow: var(--glow-primary);
    flex-shrink: 0;
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--foreground);
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .site-brand__text {
        font-size: 20px;
    }
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

/* Primary nav - mobile drawer by default */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #020617;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    z-index: 999;
    padding: 24px 20px;
}

.primary-nav.is-open {
    display: flex;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    color: var(--foreground);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition), padding-left var(--transition);
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--primary);
    padding-left: 24px;
}

.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.nav-cta .btn {
    text-align: center;
    justify-content: center;
}

/* Desktop nav - inline */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        background: transparent;
        overflow: visible;
        padding: 0;
    }

    .nav-list {
        flex-direction: row;
        gap: 32px;
    }

    .nav-list a {
        border-bottom: none;
        padding: 8px 0;
        min-height: auto;
        font-size: 17px;
    }

    .nav-list a:hover,
    .nav-list a:focus {
        padding-left: 0;
        color: var(--primary);
    }

    .nav-cta {
        flex-direction: row;
        gap: 12px;
        margin-top: 0;
        margin-left: 32px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    min-height: 48px;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
    color: var(--primary-foreground);
}

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

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 240, 255, 0.7);
    }
}

/* ============================================
   FEATURE CARDS
   .feature-card - universal content card
   ============================================ */
.feature-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.feature-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-elevated);
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.feature-card:hover .feature-card__image img {
    transform: scale(1.05);
}

.feature-card__body {
    padding: var(--component-padding);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card__body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .feature-card__body h3 {
        font-size: 24px;
    }
}

.feature-card__body p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.card-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
    align-self: flex-start;
}

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

/* ============================================
   FAQ ACCORDION
   .faq-accordion - collapsible Q&A with <details>
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: inset 3px 0 0 var(--accent), 0 0 15px rgba(0, 255, 65, 0.1);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
    list-style: none;
    user-select: none;
}

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

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

.faq-item__icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: transform var(--transition), opacity var(--transition);
}

.faq-item__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-item__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item__answer {
    padding: 0 24px 24px;
}

.faq-item__answer p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg-secondary);
    margin: 0;
}

.faq-item[open] .faq-item__answer {
    animation: faq-slide-down 300ms ease-out;
}

@keyframes faq-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CTA BANNER
   .cta-banner - full-width conversion section
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.cta-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.cta-banner__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .cta-banner__title {
        font-size: 36px;
    }
}

.cta-banner__subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--fg-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-banner__micro {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-muted);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ============================================
   HERO SECTION
   .hero - full-bleed banner with background image
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.7) 50%, rgba(2, 6, 23, 0.95) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--foreground);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    margin-bottom: 16px;
    max-width: 800px;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--fg-secondary);
    max-width: 600px;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 520px;
    }

    .hero__content {
        padding: 48px 0;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__subtitle {
        font-size: 20px;
    }
}

/* HUD grid overlay */
.hud-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   TABLES - Holographic Interface
   .data-table - sci-fi styled data table
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 16px;
    min-width: 500px;
}

.data-table caption {
    text-align: left;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-muted);
    caption-side: top;
}

.data-table th {
    background: var(--bg-card);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    padding: 16px 20px;
    border-bottom: 2px solid var(--primary);
    text-align: left;
    white-space: nowrap;
}

.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--fg-secondary);
}

.data-table tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.5);
}

.data-table tbody tr:hover {
    background: rgba(0, 240, 255, 0.05);
    color: var(--foreground);
}

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

/* Callout / highlight box */
.callout {
    border-left: 3px solid var(--primary);
    background: rgba(0, 240, 255, 0.05);
    padding: 24px;
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
}

.callout--green {
    border-left-color: var(--accent);
    background: rgba(0, 255, 65, 0.05);
}

.callout--purple {
    border-left-color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.05);
}

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

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

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    line-height: 1;
    display: block;
}

.stat-highlight__label {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--fg-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

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

/* Pull quote */
.pull-quote {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.4;
    color: var(--foreground);
    border-left: 3px solid var(--neon-purple);
    padding: 24px 32px;
    margin: 40px 0;
    background: rgba(168, 85, 247, 0.05);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

@media (min-width: 1024px) {
    .pull-quote {
        font-size: 24px;
    }
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 16px;
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fg-muted);
    transition: border-color var(--transition), color var(--transition);
}

.trust-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Badge / label */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
}

.badge--green {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 255, 65, 0.1);
}

.badge--purple {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

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

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

.footer-col--brand .site-brand {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg-muted);
    margin-bottom: 12px;
}

.footer-license {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-muted);
    margin-bottom: 0;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--fg-secondary);
    text-decoration: none;
    transition: color var(--transition);
    display: inline-block;
    padding: 6px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-top: 1px solid var(--border);
}

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

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color var(--transition), color var(--transition);
}

.payment-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fg-muted);
}

.footer-18 {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--accent);
    font-size: 16px;
}

.footer-sep {
    color: var(--border);
}

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */
.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);
}

/* Staggered delays for grid children */
.grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 10000;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    border-radius: 0 0 6px 0;
    transition: top var(--transition);
}

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

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

.neon-text {
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    line-height: 1;
}

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

/* Inline image within text sections */
.inline-image {
    border-radius: 8px;
    border: 2px solid var(--border);
    width: 100%;
    height: auto;
}

/* SEO content block */
.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--fg-secondary);
    margin-bottom: 28px;
}

.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(0, 240, 255, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition), color var(--transition);
}

.seo-content a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* Payment strip */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

/* Provider logos strip */
.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-muted);
    padding: 10px 20px;
    min-width: 140px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    transition: color var(--transition), border-color var(--transition);
}

.provider-logo:hover {
    color: var(--primary);
    border-color: var(--primary);
}

@media (min-width: 768px) {
    .provider-logo {
        font-size: 16px;
        min-width: 160px;
    }
}

@media (min-width: 1024px) {
    .provider-logos {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        justify-items: stretch;
    }

    .provider-logo {
        width: 100%;
        min-width: 0;
    }
}

/* VIP level list */
.vip-levels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-level {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color var(--transition);
}

.vip-level:hover {
    border-color: var(--neon-purple);
}

.vip-level__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--neon-purple);
    border-radius: 6px;
    flex-shrink: 0;
}

.vip-level__name {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
}

.vip-level__desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fg-muted);
}

/* Numbered steps */
.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    counter-reset: step-counter;
}

.step-list > li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    counter-increment: step-counter;
}

.step-list > li::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--glow-primary);
}

.step-list h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.step-list p {
    font-size: 16px;
    color: var(--fg-secondary);
    margin-bottom: 0;
}

/* ============================================
   SPIELAUTOMATEN PAGE - HERO VARIANT
   ============================================ */
.hero--spielautomaten .hero__bg::after {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.65) 50%, rgba(2, 6, 23, 0.95) 100%);
}

.hero--spielautomaten .hero__title {
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

/* ============================================
   AUSZAHLUNG PAGE - HERO VARIANT
   ============================================ */
.hero--auszahlung .hero__bg::after {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.65) 50%, rgba(2, 6, 23, 0.95) 100%);
}

.hero--auszahlung .hero__title {
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

/* ============================================
   HOMEPAGE - HERO STATS
   ============================================ */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.hero-stats .stat-highlight {
    flex: 1;
    min-width: 120px;
    padding: 16px;
}

.hero-stats .stat-highlight__number {
    font-size: 36px;
}

@media (min-width: 1024px) {
    .hero-stats .stat-highlight__number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 12px;
    }

    .hero-stats .stat-highlight {
        flex: 1 1 100%;
        min-width: 0;
        padding: 12px;
    }

    .hero-stats .stat-highlight__label {
        font-size: 14px;
        letter-spacing: 0.05em;
    }
}

/* ============================================
   WELCOME TEASER
   ============================================ */
.welcome-teaser {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    box-shadow: var(--glow-primary);
    overflow: hidden;
}

.welcome-teaser__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: var(--component-padding);
}

.welcome-teaser__badge {
    flex-shrink: 0;
    text-align: center;
}

.welcome-teaser__badge img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.welcome-teaser__content {
    flex: 1;
    min-width: 0;
}

.welcome-teaser__content p {
    margin-bottom: 20px;
}

.welcome-teaser__content .btn {
    margin-top: 8px;
}

@media (min-width: 768px) {
    .welcome-teaser__inner {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }

    .welcome-teaser__badge img {
        max-width: 220px;
    }
}

/* ============================================
   DEPOSIT BREAKDOWN
   ============================================ */
.deposit-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.deposit-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color var(--transition);
}

.deposit-step:hover {
    border-color: var(--primary);
}

.deposit-step__label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    min-width: 110px;
}

.deposit-step__value {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--fg-secondary);
}

/* ============================================
   PAYMENT ICONS
   ============================================ */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.payment-icon-box {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.payment-icon-box:hover {
    border-color: var(--accent);
    box-shadow: var(--glow-accent);
    transform: scale(1.05);
}

.payment-icon-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.sitemap-category__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .sitemap-category__title {
        font-size: 24px;
    }
}

.sitemap-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sitemap-item {
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sitemap-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.sitemap-item__link {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: color var(--transition), text-shadow var(--transition);
}

.sitemap-item__link:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
}

.sitemap-item__link--current {
    color: var(--fg-muted);
    cursor: default;
}

.sitemap-item__link--current:hover {
    color: var(--fg-muted);
    text-shadow: none;
}

.sitemap-item__desc {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg-secondary);
    margin: 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;
}
