/* ============================================
   XON CASINO - Design System
   Cyberpunk-futuristic dark theme
   Mobile-first responsive architecture
   ============================================ */

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg-primary);
    background-color: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.25s ease-out;
}

a:hover {
    color: var(--fg-primary);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--fg-primary);
    line-height: 1.2;
    font-weight: 700;
}

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

pre, code {
    max-width: 100%;
    overflow-x: auto;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    max-width: 100%;
}

section {
    overflow: clip;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--accent-cyan);
    color: var(--bg-deep);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 8px;
}


/* ============================================
   TYPOGRAPHY
   Orbitron: headings (futuristic console readout)
   Exo 2: body (tech DNA, high readability)
   ============================================ */

h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0;
}

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

h3 {
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.625rem);
    font-weight: 500;
    line-height: 1.3;
}

h4 {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
    font-weight: 500;
    line-height: 1.3;
}

/* Stat numbers - large glowing display */
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw + 0.5rem, 3.5rem);
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan-glow), 0 0 40px rgba(0, 240, 255, 0.15);
    line-height: 1;
}

/* SEO text blocks */
.seo-content {
    max-width: var(--max-text);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
}

.seo-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--fg-primary);
}

.seo-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--fg-primary);
}

.seo-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg-secondary);
    margin-bottom: var(--space-lg);
}

.seo-content ul,
.seo-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.seo-content ul {
    list-style: disc;
}

.seo-content ol {
    list-style: decimal;
}

.seo-content li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg-secondary);
    margin-bottom: var(--space-sm);
}

.seo-content li::marker {
    color: var(--accent-cyan);
}

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

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

.seo-content strong {
    color: var(--fg-primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .seo-content p,
    .seo-content li {
        font-size: 17px;
    }
}


/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-content);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.container--narrow {
    max-width: var(--max-text);
}

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

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

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

/* Section circuit-board divider line */
.circuit-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan-dim), var(--border-medium), var(--accent-cyan-dim), transparent);
    margin: 0 auto;
    max-width: var(--max-content);
    position: relative;
}

.circuit-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--accent-cyan-glow);
}


/* ============================================
   BUTTONS
   Primary magenta with neon pulse glow
   Ghost variant for login/secondary actions
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease-out;
    min-height: 48px;
    padding: 12px 24px;
    gap: 8px;
    white-space: nowrap;
}

/* FIX: Darken magenta for 4.5:1 contrast with white text */
.btn-primary {
    background: #d4195f;
    color: #ffffff;
    box-shadow: 0 0 16px var(--accent-magenta-glow);
}

.btn-primary:hover {
    background: #e02570;
    color: #ffffff;
    box-shadow: 0 0 28px var(--accent-magenta-glow), 0 0 48px rgba(255, 45, 120, 0.25);
    transform: translateY(-1px);
}

/* Persistent pulse animation on CTA */
.btn-glow {
    animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 0 16px var(--accent-magenta-glow);
    }
    50% {
        box-shadow: 0 0 28px var(--accent-magenta-glow), 0 0 48px rgba(255, 45, 120, 0.2);
    }
}

.btn-glow:hover {
    animation: none;
    box-shadow: 0 0 32px var(--accent-magenta-glow), 0 0 56px rgba(255, 45, 120, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--fg-primary);
    border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-sm {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    min-height: 52px;
    padding: 14px 32px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

.btn-outline-cyan {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-outline-cyan:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--fg-primary);
}


/* ============================================
   HEADER
   Fixed sticky, semi-transparent → opaque on scroll
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(6, 9, 26, 0.85);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(6, 9, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
}

/* Logo */
.header-logo,
.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 2px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--fg-primary);
    text-shadow: 0 0 12px var(--accent-cyan-glow);
}

.logo-accent {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-cyan);
}

/* Desktop nav */
.main-nav {
    display: none;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--fg-secondary);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.25s ease-out;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta-mobile {
    display: none;
}

/* Header action buttons */
.header-actions {
    display: none;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    transition: border-color 0.25s ease;
}

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

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 1px;
}

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

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--bg-deep);
        overflow-y: auto;
        padding: var(--space-lg);
        flex-direction: column;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        font-size: 18px;
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
        border-top: 1px solid var(--border-subtle);
    }
}

/* Desktop nav breakpoint */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
    }

    .header-actions {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .nav-cta-mobile {
        display: none;
    }
}


/* ============================================
   FOOTER
   4-column grid with circuit-board top edge
   ============================================ */
.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    padding-top: 0;
    margin-top: var(--space-2xl);
}

.footer-circuit-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan-dim), var(--border-light), var(--accent-cyan-dim), transparent);
}

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

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

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--fg-secondary);
    margin-bottom: var(--space-md);
}

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

.license-badge {
    font-size: 12px;
    color: var(--fg-secondary);
    padding: 4px 8px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.age-badge {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FIX heading-order: Use h3 instead of h4 in footer */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--fg-secondary);
    transition: color 0.25s ease;
    padding: 4px 0;
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--fg-secondary);
    transition: all 0.25s ease;
}

.payment-icon:hover {
    border-color: var(--border-medium);
    color: var(--fg-primary);
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--fg-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--fg-muted);
}

.footer-disclaimer a {
    color: var(--fg-secondary);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer-inner {
        padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    }
}


/* ============================================
   HERO SECTIONS
   Full-bleed dark gradient backgrounds
   ============================================ */
.hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    background: linear-gradient(135deg, var(--bg-deep) 0%, #0a1030 50%, var(--bg-deep) 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero--full {
    min-height: 75vh;
}

.hero__circuit-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, transparent 49.5%, var(--accent-cyan-dim) 49.5%, var(--accent-cyan-dim) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, var(--accent-cyan-dim) 49.5%, var(--accent-cyan-dim) 50.5%, transparent 50.5%);
    background-size: 80px 80px;
    opacity: 0.04;
    pointer-events: none;
}

.hero__content {
    position: relative;
    max-width: var(--max-content);
    margin: 0 auto;
    width: 100%;
    z-index: 1;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    color: var(--fg-secondary);
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

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

.hero__microcopy {
    font-size: 13px;
    color: var(--fg-secondary);
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + var(--space-4xl));
        padding-bottom: var(--space-4xl);
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .hero--split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}


/* ============================================
   GAME CARD GRID
   CSS grid, auto-fill minmax 160px columns
   Neon hover glow effect
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-medium);
    overflow: hidden;
    text-decoration: none;
    color: var(--fg-primary);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 20px var(--accent-cyan-glow), 0 4px 16px rgba(0, 0, 0, 0.4);
    color: var(--fg-primary);
}

.game-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.game-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #d4195f;
    border-radius: 50%;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 0 16px var(--accent-magenta-glow);
    animation: cta-pulse 2.5s ease-in-out infinite;
}

.game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent-gold);
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.game-card__info {
    padding: 10px 12px;
}

.game-card__name {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fg-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    display: block;
    font-size: 12px;
    color: var(--fg-secondary);
    margin-top: 2px;
}

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

@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(var(--grid-cols, 4), minmax(0, 1fr));
        gap: var(--space-lg);
    }
}


/* ============================================
   CTA BANNER
   Full-bleed conversion section
   Circuit-board overlay, magenta pulse button
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, #0a1030 0%, var(--bg-deep) 50%, #0a0e27 100%);
    text-align: center;
}

.cta-banner__circuit {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, transparent 49.5%, rgba(0, 240, 255, 0.08) 49.5%, rgba(0, 240, 255, 0.08) 50.5%, transparent 50.5%);
    background-size: 120px 120px;
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    max-width: var(--max-text);
    margin: 0 auto;
    z-index: 1;
}

.cta-banner__headline {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 3vw + 0.25rem, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fg-primary);
    text-shadow: 0 0 20px var(--accent-cyan-glow);
    margin-bottom: var(--space-md);
}

.cta-banner__subtext {
    font-size: clamp(1rem, 1.5vw, 1.0625rem);
    color: var(--fg-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.cta-banner__microcopy {
    font-size: 13px;
    color: var(--fg-secondary);
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .cta-banner {
        padding: var(--space-2xl) var(--space-lg);
    }
}


/* ============================================
   FAQ ACCORDION
   details/summary native, CSS-only transitions
   ============================================ */
.faq-section {
    padding: var(--space-2xl) var(--space-md);
}

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

.faq-section__heading {
    text-align: center;
    margin-bottom: var(--space-xl);
}

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

.faq-item {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

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

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    min-height: 48px;
}

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

.faq-item__q-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fg-primary);
    line-height: 1.4;
}

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--accent-cyan);
    transition: transform 0.35s ease;
}

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

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

.faq-item__answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--fg-secondary);
}

.faq-item__answer a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 768px) {
    .faq-section {
        padding: var(--space-4xl) var(--space-lg);
    }

    .faq-item__question {
        padding: 16px 20px;
    }

    .faq-item__q-text {
        font-size: 18px;
    }

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

    .faq-item__answer p {
        font-size: 17px;
    }
}


/* ============================================
   INFO CARDS
   Versatile card component with icon/image,
   title, description, optional CTA and badge
   ============================================ */
.info-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
    min-width: 0;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.1);
    border-color: var(--border-bright);
}

.info-card__badge {
    position: absolute;
    top: -1px;
    right: 16px;
    background: var(--accent-gold);
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.info-card__icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--accent-cyan);
}

.info-card__image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.info-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--fg-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.info-card__desc {
    font-size: 15px;
    line-height: 1.5;
    color: var(--fg-secondary);
    margin-bottom: 12px;
}

.info-card__cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-magenta);
    text-decoration: none;
    transition: color 0.25s ease;
}

.info-card__cta:hover {
    color: #ff4a8f;
    text-decoration: underline;
}

/* Info card grids */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .info-card {
        padding: 28px;
    }

    .info-card__title {
        font-size: 20px;
    }

    .info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}

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

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

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


/* ============================================
   COMPARISON TABLE
   Scrollable on mobile, highlighted column,
   alternating row backgrounds
   ============================================ */
.table-wrap {
    max-width: var(--max-text);
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.table-wrap--full {
    max-width: 100%;
}

.table-caption {
    font-size: 14px;
    color: var(--fg-secondary);
    margin-bottom: var(--space-sm);
}

/* FIX: scrollable-region-focusable - add tabindex and role via CSS hint */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    min-width: 480px;
}

.comp-table thead {
    background: var(--bg-card);
}

.comp-table th {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    padding: 14px 16px;
    text-align: left;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-subtle);
}

.comp-table td {
    font-size: 15px;
    color: var(--fg-primary);
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.comp-table tbody tr:nth-child(odd) {
    background: var(--bg-deep);
}

.comp-table tbody tr:nth-child(even) {
    background: var(--bg-card);
}

.comp-table tbody tr:hover {
    background: rgba(0, 240, 255, 0.05);
}

.comp-table__highlight {
    border-top: 2px solid var(--accent-magenta);
    background: rgba(255, 45, 120, 0.05) !important;
}

.check-icon {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 18px;
}

.x-icon {
    color: var(--fg-muted);
    font-weight: 700;
    font-size: 18px;
}

@media (min-width: 768px) {
    .comp-table th {
        font-size: 15px;
    }

    .comp-table td {
        font-size: 16px;
    }
}


/* ============================================
   TRUST BADGE ROW
   Horizontal strip with circuit-board top edge
   ============================================ */
.trust-row {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    background: var(--bg-deep);
}

.trust-row__line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.12), rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.12), transparent);
}

.trust-row__inner {
    max-width: var(--max-content);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trust-row__trustpilot {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-row__score {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.trust-row__stars {
    font-size: 18px;
    color: var(--accent-gold);
}

.trust-row__count {
    font-size: 13px;
    color: var(--fg-secondary);
}

.trust-row__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--fg-secondary);
    transition: color 0.25s ease;
}

.trust-row__badge:hover {
    color: var(--fg-primary);
}

.trust-row__badge-icon {
    font-size: 20px;
    height: 32px;
    display: flex;
    align-items: center;
}

.trust-row__badge-label {
    font-size: 13px;
    white-space: nowrap;
}

.trust-row__badge--age .trust-row__badge-icon {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    justify-content: center;
}

@media (min-width: 768px) {
    .trust-row {
        padding: var(--space-xl) var(--space-lg);
    }

    .trust-row__inner {
        gap: var(--space-xl);
    }

    .trust-row__badge-icon {
        height: 40px;
        font-size: 24px;
    }
}


/* ============================================
   ENGAGEMENT & CRO PATTERNS
   Summary box, callout, stat highlight,
   pull quote, details/summary
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--bg-card);
    border: 1px solid var(--accent-cyan-dim);
    border-left: 3px solid var(--accent-cyan);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: var(--space-lg);
}

.summary-box__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.summary-box p {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.6;
}

/* Callout / highlight box */
.callout {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: var(--space-lg) 0;
}

.callout--tip {
    border-left: 3px solid var(--accent-cyan);
}

.callout--warning {
    border-left: 3px solid var(--accent-gold);
}

.callout--important {
    border-left: 3px solid var(--accent-magenta);
}

.callout__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: var(--space-sm);
}

.callout--warning .callout__title {
    color: var(--accent-gold);
}

.callout--important .callout__title {
    color: var(--accent-magenta);
}

.callout p {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.6;
}

/* FIX: link-in-text-block - links inside callouts, summary boxes, and general body text
   need underline to be distinguishable from surrounding text without relying on color */
.callout a,
.cashback-info a,
.text-muted a,
.summary-box a,
.paypal-alt-list a,
.responsible-teaser__text a,
.footer-disclaimer a,
.info-card__desc a {
    text-decoration: underline;
    text-decoration-color: rgba(0, 240, 255, 0.4);
    text-underline-offset: 3px;
}

.callout a:hover,
.cashback-info a:hover,
.text-muted a:hover,
.summary-box a:hover,
.paypal-alt-list a:hover,
.responsible-teaser__text a:hover,
.info-card__desc a:hover {
    text-decoration-color: var(--accent-cyan);
    color: var(--fg-primary);
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.stat-highlight__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan-glow);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-highlight__label {
    font-size: 16px;
    color: var(--fg-secondary);
}

.stat-highlight__source {
    font-size: 12px;
    color: var(--fg-muted);
    margin-top: var(--space-xs);
}

/* Pull quote */
.pull-quote {
    border-left: 3px solid var(--accent-magenta);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

.pull-quote blockquote {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-style: italic;
    color: var(--fg-primary);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.pull-quote cite {
    font-size: 14px;
    font-style: normal;
    color: var(--fg-secondary);
}

/* Social proof / testimonial cards */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
}

.testimonial-card__stars {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: var(--space-sm);
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg-secondary);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.testimonial-card__author {
    font-size: 14px;
    color: var(--fg-secondary);
    font-weight: 600;
}


/* ============================================
   PROVIDER LOGO STRIP / CAROUSEL
   ============================================ */
.providers-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
}

/* FIX: color-contrast - increase provider strip opacity and use brighter text color */
.providers-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 var(--space-md);
    color: var(--fg-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.providers-strip__item:hover {
    color: var(--fg-primary);
}

@media (min-width: 768px) {
    .providers-strip__item {
        height: 48px;
        font-size: 15px;
    }
}


/* ============================================
   CATEGORY PILL TABS
   Horizontal scrollable filter buttons
   ============================================ */
.pill-tabs {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
}

.pill-tabs::-webkit-scrollbar {
    display: none;
}

.pill-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #9ba8bc;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.pill-tab:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.pill-tab.active {
    background: var(--accent-cyan);
    color: var(--bg-deep);
    border-color: var(--accent-cyan);
    font-weight: 600;
}


/* ============================================
   SECTION HEADINGS
   Centered section titles with optional subtitle
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 16px;
    color: var(--fg-secondary);
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: var(--space-2xl);
    }
}


/* ============================================
   RATING DISPLAY
   Star rating bars for review pages
   ============================================ */
.rating-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.rating-bar__label {
    font-size: 14px;
    color: var(--fg-secondary);
    min-width: 100px;
}

.rating-bar__track {
    flex: 1;
    height: 8px;
    background: var(--bg-surface);
    border-radius: 4px;
    overflow: hidden;
    min-width: 0;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-bar__value {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    min-width: 32px;
    text-align: right;
}


/* ============================================
   PROS / CONS LIST
   ============================================ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.pros-cons__col {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
}

.pros-cons__col--pro {
    border-top: 3px solid var(--accent-cyan);
}

.pros-cons__col--con {
    border-top: 3px solid var(--accent-magenta);
}

.pros-cons__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.pros-cons__col--pro .pros-cons__title {
    color: var(--accent-cyan);
}

.pros-cons__col--con .pros-cons__title {
    color: var(--accent-magenta);
}

.pros-cons__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pros-cons__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.5;
}

.pros-cons__item::before {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 16px;
    margin-top: 1px;
}

.pros-cons__col--pro .pros-cons__item::before {
    content: '✓';
    color: var(--accent-cyan);
}

.pros-cons__col--con .pros-cons__item::before {
    content: '✗';
    color: var(--accent-magenta);
}

@media (min-width: 768px) {
    .pros-cons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}


/* ============================================
   MEMBER/REDIRECT PAGE
   Centered loading spinner, no header/footer
   ============================================ */

/* Hide header/footer when page-member class is on body */
.page-member .site-header,
.page-member .site-footer,
.page-member .skip-link {
    display: none !important;
}

.page-member #main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.page-member {
    overflow: hidden;
}

.member-page-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.member-circuit-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(90deg, transparent 49.5%, rgba(0, 240, 255, 0.04) 49.5%, rgba(0, 240, 255, 0.04) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(0, 240, 255, 0.04) 49.5%, rgba(0, 240, 255, 0.04) 50.5%, transparent 50.5%);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.member-redirect {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
}

.member-redirect__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--space-xl);
}

.member-redirect__logo .logo-text {
    font-size: 48px;
}

.member-redirect__logo .logo-accent {
    font-size: 48px;
}

.member-redirect__text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--fg-secondary);
    margin-bottom: var(--space-xl);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.6;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent-cyan);
    border-right-color: var(--accent-magenta);
    border-radius: 50%;
    margin: 0 auto;
    animation: spinner-rotate 1s linear infinite;
}

@keyframes spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .member-redirect__logo .logo-text,
    .member-redirect__logo .logo-accent {
        font-size: 36px;
    }

    .member-redirect__text {
        font-size: 16px;
    }
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ============================================
   RESPONSIBLE GAMBLING PAGE
   Subdued, serious tone
   ============================================ */
.page-responsible .hero {
    min-height: auto;
    padding-bottom: var(--space-xl);
    background: linear-gradient(180deg, var(--bg-deep) 0%, #080c22 100%);
}

.page-responsible h2 {
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem);
}

/* Responsible hero */
.responsible-hero {
    text-align: center;
    min-height: auto;
    padding-bottom: var(--space-xl);
    background: linear-gradient(180deg, var(--bg-deep) 0%, #080c22 100%);
}

.responsible-hero__inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.responsible-hero__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 20px var(--accent-gold-dim);
}

.responsible-hero__badge--inline {
    width: 56px;
    height: 56px;
    font-size: 20px;
    margin-bottom: 0;
}

.underage-badge-row {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.responsible-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 3vw + 0.25rem, 2.25rem);
    font-weight: 700;
    color: var(--fg-primary);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.responsible-hero__subtitle {
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
    color: var(--fg-secondary);
    line-height: 1.6;
    max-width: 540px;
}

/* Body text for responsible page */
.responsible-body-text {
    font-size: 16px;
    line-height: 1.7;
    color: #a3b1c6;
    margin-bottom: var(--space-lg);
}

.responsible-body-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 240, 255, 0.3);
    text-underline-offset: 3px;
}

.responsible-body-text a:hover {
    text-decoration-color: var(--accent-cyan);
    color: var(--fg-primary);
}

.responsible-body-text--closing {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    font-style: italic;
}

/* Self-management tools */
.responsible-tools {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.responsible-tool {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
}

.responsible-tool__icon {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--accent-cyan);
    opacity: 0.7;
}

.responsible-tool__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fg-primary);
    margin-bottom: var(--space-xs);
}

.responsible-tool__desc {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.5;
}

/* Steps list */
.responsible-steps-list {
    list-style: decimal;
    padding-left: var(--space-lg);
    margin: var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.responsible-steps-list li {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.6;
    padding-left: var(--space-xs);
}

.responsible-steps-list li::marker {
    color: var(--accent-cyan);
    font-weight: 700;
}

.responsible-steps-list li strong {
    color: var(--fg-primary);
}

/* Warning signs list */
.warning-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.5;
    padding: var(--space-sm) 0;
}

.warning-list li::before {
    content: '⚠';
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Check list for underage section */
.responsible-check-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.responsible-check-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.5;
}

.responsible-check-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    flex-shrink: 0;
    font-weight: 700;
    opacity: 0.7;
}

.responsible-check-list li strong {
    color: var(--fg-primary);
}

/* Support organizations */
.support-org {
    padding: var(--space-md);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.support-org__name {
    font-weight: 600;
    color: var(--fg-primary);
    font-size: 16px;
    margin-bottom: var(--space-xs);
}

.support-org__desc {
    font-size: 14px;
    color: var(--fg-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.support-org__link {
    font-size: 14px;
    color: var(--fg-secondary);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.support-org__link a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 240, 255, 0.3);
    text-underline-offset: 3px;
}

.support-org__link a:hover {
    text-decoration-color: var(--accent-cyan);
    color: var(--fg-primary);
}


/* ============================================
   HOMEPAGE - Hero split layout
   ============================================ */
.hero-home-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
}

.hero-home__text {
    max-width: 600px;
}

.hero-home__visual {
    max-width: 400px;
    width: 100%;
}

.hero-home__visual img {
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15), 0 0 80px rgba(255, 45, 120, 0.1);
}

.hero-highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan-glow), 0 0 40px rgba(0, 240, 255, 0.15);
}

@media (min-width: 1024px) {
    .hero-home-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-home__visual {
        max-width: 480px;
    }
}


/* ============================================
   HOMEPAGE - Deposit steps
   FIX: Remove conflicting second deposit-steps block.
   Use grid layout that works on both mobile and desktop.
   ============================================ */
.deposit-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    max-width: var(--max-content);
    margin: 0 auto;
}

.deposit-step {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
    text-align: left;
    position: relative;
    min-width: 0;
}

.deposit-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.1);
    border-color: var(--border-bright);
}

/* Remove connecting line pseudo-element that causes layout issues */
.deposit-step::after {
    display: none;
}

.deposit-step__number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4195f, #a8144c);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 0 16px var(--accent-magenta-glow);
}

/* Hide unused num element from bonus page variant */
.deposit-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 0 auto var(--space-sm);
    position: relative;
    z-index: 2;
}

.deposit-step__content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.deposit-step__match {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 12px var(--accent-cyan-glow);
    margin-bottom: 2px;
}

.deposit-step__percent {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--fg-primary);
    margin-bottom: var(--space-xs);
}

.deposit-step__amount {
    font-size: 13px;
    color: var(--fg-secondary);
}

.deposit-step__wager {
    font-size: 13px;
    color: var(--fg-secondary);
}

@media (min-width: 768px) {
    .deposit-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--space-lg);
    }

    .deposit-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
    }

    .deposit-step__match {
        font-size: 24px;
    }
}


/* ============================================
   HOMEPAGE - Payment methods grid
   ============================================ */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    max-width: var(--max-content);
    margin: 0 auto;
}

.payment-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 90px;
    height: 72px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all 0.25s ease-out;
}

.payment-method-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.1);
}

.payment-method-card__icon {
    font-size: 22px;
    color: var(--fg-secondary);
}

.payment-method-card__name {
    font-size: 11px;
    color: #8a95a8;
    font-weight: 500;
}


/* ============================================
   HOMEPAGE - Testimonials grid
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}


/* ============================================
   HOMEPAGE - Mobile app section
   ============================================ */
.mobile-app-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
}

.mobile-app__text {
    max-width: 500px;
}

.mobile-app__text h2 {
    margin-bottom: var(--space-md);
}

.mobile-app__text p {
    font-size: 17px;
    color: var(--fg-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.mobile-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-features-list li {
    font-size: 16px;
    color: var(--fg-secondary);
    line-height: 1.5;
}

.mobile-app__visual {
    max-width: 280px;
    width: 100%;
}

.mobile-app__visual img {
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.12);
}

@media (min-width: 1024px) {
    .mobile-app-layout {
        flex-direction: row;
        justify-content: space-between;
    }

    .mobile-app__visual {
        max-width: 340px;
        order: -1;
    }
}


/* ============================================
   HOMEPAGE - Responsible teaser
   ============================================ */
.section--responsible {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.responsible-teaser {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.responsible-teaser__badge {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsible-teaser__title {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: var(--space-sm);
}

.responsible-teaser__text {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.responsible-teaser__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-cyan);
}


/* ============================================
   HOMEPAGE - Loyalty section
   ============================================ */
.section--loyalty {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0a1030 50%, var(--bg-deep) 100%);
}

/* FIX: Loyalty grid - 3 items should display as 1 column on mobile to avoid orphan */
.section--loyalty .info-grid--3 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .section--loyalty .info-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* ============================================
   TEXT UTILITY
   ============================================ */
.text-center {
    text-align: center;
}


/* ============================================
   SCROLL ANIMATIONS
   Viewport intersection reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* Staggered children */
.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn-glow {
        animation: none;
    }

    .game-card__play-btn {
        animation: none;
    }

    .spinner {
        animation-duration: 2s;
    }
}


/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-cyan { color: var(--accent-cyan); }
.text-magenta { color: var(--accent-magenta); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--fg-secondary); }

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

/* Spacer for after header */
.header-spacer {
    height: var(--header-height);
}


/* ============================================
   MAIN CONTENT PADDING
   Push content below fixed header
   ============================================ */
main {
    padding-top: var(--header-height);
}

/* Pages with hero sections handle their own padding */
.page-home main,
.page-bonus main,
.page-spiele main,
.page-zahlungen main,
.page-erfahrungen main,
.page-responsible main,
.page-member main {
    padding-top: 0;
}


/* ============================================
   ERFAHRUNGEN PAGE - Hero rating display
   ============================================ */
.erfahrungen-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.erfahrungen-hero .hero__subtitle {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.hero-rating-display__score {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hero-rating-display__number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw + 1rem, 5rem);
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan-glow), 0 0 40px rgba(0, 240, 255, 0.15);
    line-height: 1;
}

.hero-rating-display__max {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--fg-secondary);
}

.hero-rating-display__stars {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--accent-gold);
    letter-spacing: 4px;
}

.hero-rating-display__count {
    font-size: 15px;
    color: var(--fg-secondary);
}

.hero-verdict-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 999px;
    padding: 8px 24px;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}


/* ============================================
   ERFAHRUNGEN PAGE - Verdict card
   ============================================ */
.verdict-card {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: var(--max-content);
    margin: 0 auto;
}

.verdict-card__score-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.verdict-card__overall {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.verdict-card__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan-glow);
    line-height: 1;
}

.verdict-card__label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--fg-secondary);
}

.verdict-card__verdict {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan-dim);
    border-radius: 999px;
    padding: 4px 16px;
    letter-spacing: 0.5px;
}

.verdict-card__ratings {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
}

@media (min-width: 768px) {
    .verdict-card {
        flex-direction: row;
        align-items: center;
        padding: 32px 40px;
    }

    .verdict-card__score-area {
        min-width: 160px;
        flex-shrink: 0;
        border-right: 1px solid var(--border-light);
        padding-right: var(--space-xl);
    }

    .verdict-card__ratings {
        flex: 1;
    }
}


/* ============================================
   SPIELE PAGE - Hero counter layout
   ============================================ */
.spiele-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.spiele-hero__counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.spiele-hero__counter .stat-number {
    font-size: clamp(3rem, 8vw + 1rem, 5rem);
}

.spiele-counter__label {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--fg-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spiele-hero .hero__subtitle {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.spiele-hero .hero__actions {
    justify-content: center;
}

.spiele-hero .hero__microcopy {
    text-align: center;
}

.spiele-hero .pill-tabs {
    justify-content: center;
}


/* ============================================
   BONUS PAGE - Hero split layout
   ============================================ */
.bonus-hero-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
}

.bonus-hero__text {
    max-width: 600px;
}

.bonus-hero__visual {
    max-width: 400px;
    width: 100%;
}

.bonus-hero__visual img {
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15), 0 0 80px rgba(255, 45, 120, 0.1);
}

@media (min-width: 1024px) {
    .bonus-hero-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .bonus-hero__visual {
        max-width: 480px;
    }
}


/* ============================================
   BONUS PAGE - Cashback layout
   ============================================ */
.cashback-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: var(--max-content);
    margin: 0 auto;
}

.cashback-card {
    border-color: var(--accent-cyan-dim);
    border-left: 3px solid var(--accent-cyan);
}

.cashback-card .info-card__icon {
    font-size: 48px;
}

.cashback-details {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.cashback-details li {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cashback-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .cashback-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}


/* ============================================
   PAYMENT METHODS SPECIFIC STYLES
   ============================================ */
.payment-category {
    margin-bottom: var(--space-sm);
}

.payment-category__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}


/* ============================================
   ZAHLUNGSMETHODEN PAGE - Hero layout
   ============================================ */
.zahlungen-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.zahlungen-hero .hero__subtitle {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.zahlungen-hero .hero__actions {
    justify-content: center;
}

.zahlungen-hero .hero__microcopy {
    text-align: center;
}

.payment-hero-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-xl) auto var(--space-md);
    max-width: 600px;
}

.payment-hero-grid .payment-method-card {
    width: 80px;
    height: 64px;
}

@media (min-width: 640px) {
    .payment-hero-grid {
        gap: var(--space-md);
        max-width: 700px;
    }

    .payment-hero-grid .payment-method-card {
        width: 90px;
        height: 72px;
    }
}


/* ============================================
   ZAHLUNGSMETHODEN PAGE - Crypto section
   ============================================ */
.section--crypto {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0a1030 50%, var(--bg-deep) 100%);
}


/* ============================================
   ZAHLUNGSMETHODEN PAGE - Paysafecard layout
   ============================================ */
.paysafecard-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.paysafecard-step-list {
    list-style: decimal;
    padding-left: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.paysafecard-step-list li {
    font-size: 15px;
    color: var(--fg-secondary);
    line-height: 1.6;
}

.paysafecard-step-list li::marker {
    color: var(--accent-cyan);
    font-weight: 700;
}

.paysafecard-step-list li strong {
    color: var(--fg-primary);
}

@media (min-width: 1024px) {
    .paysafecard-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-2xl);
    }
}


/* ============================================
   ZAHLUNGSMETHODEN PAGE - PayPal alternatives
   ============================================ */
.paypal-alt-list {
    list-style: decimal;
    padding-left: var(--space-lg);
    margin: var(--space-lg) 0;
}

.paypal-alt-list li {
    font-size: 16px;
    color: var(--fg-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    padding-left: var(--space-xs);
}

.paypal-alt-list li::marker {
    color: var(--accent-cyan);
    font-weight: 700;
}

.paypal-alt-list li strong {
    color: var(--fg-primary);
}


/* ============================================
   LIVE INDICATOR DOT
   Pulsing red dot for live casino cards
   ============================================ */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 6px;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


/* ============================================
   STAT ROW - Horizontal stat callouts
   ============================================ */
.stat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 12px var(--accent-cyan-glow);
}

.stat-item__label {
    font-size: 13px;
    color: var(--fg-secondary);
    margin-top: var(--space-xs);
}