/* ============================================
   XON CASINO - DESIGN SYSTEM
   Cyberpunk-futuristic with neon accents
   Mobile-first responsive approach
   ============================================ */

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

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

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

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

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

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

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

section {
    overflow: clip;
}

/* ============================================
   RESET & BASE
   Foundation styles for the entire site
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--foreground);
    line-height: 1.2;
}

p {
    margin: 0 0 1em 0;
}

img {
    display: block;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    font-size: 14px;
}

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

/* Screen Reader Only */
.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;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Orbitron for headlines, Exo 2 for body
   8px base grid unit for spacing
   ============================================ */
h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.15;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Desktop typography scale */
@media (min-width: 1024px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 20px;
    }
    body {
        font-size: 17px;
    }
}

/* Neon gradient text utility */
.neon-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Large stat number - Orbitron, neon gradient */
.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

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

/* Pull quote - left neon border */
.pull-quote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    color: var(--foreground);
    background: rgba(26, 29, 46, 0.5);
    border-radius: 0 8px 8px 0;
}

@media (min-width: 1024px) {
    .pull-quote {
        font-size: 19px;
        padding: 20px 32px;
    }
}

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

/* ============================================
   CONTAINERS
   Max-width wrappers for content sections
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-narrow {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-medium {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container,
    .container-narrow,
    .container-medium {
        padding: 0 24px;
    }
}

/* ============================================
   HEADER - Fixed sticky with dark translucent bg
   z-index: 1000 for header, 1001 for toggle, 999 for nav
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(15, 17, 25, 0.92);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    z-index: 1000;
    transition: background 0.3s ease;
}

/* Remove backdrop-filter to avoid CSS Containing Block Trap with fixed nav */
@media (min-width: 1024px) {
    .site-header {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        background: rgba(15, 17, 25, 0.85);
    }
}

.site-header.header-scrolled {
    background: rgba(15, 17, 25, 0.97);
    border-bottom-color: rgba(0, 229, 255, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

.logo-text-accent {
    color: var(--primary);
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 229, 255, 0.06);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

/* Header Action Buttons */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
    min-height: 40px;
    white-space: nowrap;
}

.btn-login:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary);
}

.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    min-height: 40px;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.3), 0 0 16px rgba(255, 45, 120, 0.2);
}

.btn-register:hover {
    transform: scale(1.02);
    color: var(--primary-foreground);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.5), 0 0 24px rgba(255, 45, 120, 0.4);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    z-index: 1001;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

.mobile-toggle[aria-expanded="true"] .hamburger-line: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;
        background: var(--background);
        z-index: 999;
        overflow-y: auto;
        padding: 24px 16px;
    }

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

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

    .nav-link {
        font-size: 18px;
        padding: 14px 16px;
        min-height: 48px;
        border-radius: 8px;
    }

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

    .nav-link:hover {
        background: rgba(0, 229, 255, 0.08);
    }

    /* Mobile nav CTA buttons */
    .main-nav.is-open .nav-list::after {
        content: '';
        display: block;
        height: 16px;
    }

    /* Show mobile CTA within nav */
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .mobile-nav-actions .btn-login,
    .mobile-nav-actions .btn-register {
        display: flex;
        justify-content: center;
        min-height: 48px;
        font-size: 16px;
    }
}

/* Hide mobile CTA buttons on desktop */
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
    }

    .header-actions {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

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

/* Space after fixed header */
main {
    padding-top: var(--header-height);
}

/* ============================================
   BUTTONS - Primary, Secondary, Ghost
   Neon gradient CTA with pulse animation
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-foreground);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    text-decoration: none;
    min-height: 48px;
    cursor: pointer;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), 0 0 20px rgba(255, 45, 120, 0.2);
    position: relative;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: scale(1.02);
    color: var(--primary-foreground);
    box-shadow: 0 0 32px rgba(0, 229, 255, 0.5), 0 0 32px rgba(255, 45, 120, 0.4);
}

.btn-primary:active {
    transform: scale(1.02) translateY(1px);
}

/* Pulse animation for CTA buttons */
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 16px rgba(0, 229, 255, 0.3), 0 0 16px rgba(255, 45, 120, 0.2);
    }
    50% {
        box-shadow: 0 0 28px rgba(0, 229, 255, 0.5), 0 0 28px rgba(255, 45, 120, 0.4);
    }
}

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

.btn-pulse:hover {
    animation: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    min-height: 48px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
}

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

@media (min-width: 1024px) {
    .btn-primary {
        font-size: 17px;
        padding: 16px 40px;
    }
}

/* ============================================
   HERO SECTIONS
   Full-bleed cosmic nebula gradient backgrounds
   with layered parallax depth
   ============================================ */
.hero {
    position: relative;
    padding: 48px 0;
    display: flex;
    align-items: center;
    min-height: 360px;
}

.hero-fullbleed {
    padding: 48px 0 56px;
    background: linear-gradient(
        135deg,
        var(--background) 0%,
        #0d1025 25%,
        #12102e 50%,
        #1a0d2e 75%,
        var(--background) 100%
    );
}

/* Starfield effect via pseudo-element */
.hero-fullbleed::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1px 1px at 15% 25%, rgba(0, 229, 255, 0.4), transparent),
        radial-gradient(1px 1px at 45% 65%, rgba(255, 45, 120, 0.3), transparent),
        radial-gradient(1px 1px at 75% 15%, rgba(123, 47, 255, 0.3), transparent),
        radial-gradient(1px 1px at 85% 75%, rgba(0, 229, 255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 25% 85%, rgba(255, 45, 120, 0.2), transparent),
        radial-gradient(1px 1px at 55% 35%, rgba(232, 234, 240, 0.3), transparent),
        radial-gradient(1px 1px at 35% 55%, rgba(232, 234, 240, 0.2), transparent),
        radial-gradient(1.5px 1.5px at 65% 45%, rgba(0, 229, 255, 0.2), transparent),
        radial-gradient(1px 1px at 95% 55%, rgba(123, 47, 255, 0.3), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Nebula glow overlay */
.hero-fullbleed::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0, 229, 255, 0.06), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 45, 120, 0.05), transparent),
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(123, 47, 255, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
    padding: 0 16px;
}

.hero h1 {
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.hero-stat .stat-number {
    font-size: 32px;
    display: block;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Compact hero for technical pages */
.hero-compact {
    min-height: auto;
    padding: 32px 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.hero-compact .hero-content {
    max-width: 800px;
}

@media (min-width: 768px) {
    .hero-stat .stat-number {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-fullbleed {
        padding: 80px 0;
        min-height: 480px;
    }

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

    .hero-stats {
        gap: 48px;
    }

    .hero-stat .stat-number {
        font-size: 52px;
    }

    .hero-compact {
        padding: 56px 0;
    }
}

/* ============================================
   SECTION SPACING
   96px desktop, 56px mobile - 8px grid multiples
   ============================================ */
.section {
    padding: 56px 0;
}

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

.section-heading {
    font-family: var(--font-heading);
    margin-bottom: 32px;
    text-align: center;
}

@media (min-width: 1024px) {
    .section-heading {
        margin-bottom: 48px;
    }
}

/* ============================================
   GAME CARD GRID
   2 cols mobile, 3 cols tablet, 4 cols desktop
   Dark graphite cards with neon border hover
   ============================================ */
.game-card-section {
    padding: 56px 0;
}

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

.game-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.game-card-grid--cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-card-grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

    .game-card-grid--cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

.game-card {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.15), 0 4px 24px rgba(255, 45, 120, 0.1);
}

.game-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #151828, #1e2140);
}

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

.game-card-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #151828, #1e2140);
    border-radius: 12px 12px 0 0;
    font-size: 40px;
}

/* Game card badge - darkened pink for WCAG AA contrast with white text (4.5:1+) */
.game-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: #C4245E;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.game-card-body {
    padding: 16px;
}

@media (min-width: 1024px) {
    .game-card-body {
        padding: 20px;
    }
}

.game-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
    line-height: 1.3;
}

.game-card-meta {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

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

.game-card-cta {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    gap: 4px;
    transition: color 0.25s ease;
}

.game-card-cta:hover {
    color: var(--secondary);
}

.game-card-cta::after {
    content: '→';
}

/* ============================================
   CTA BANNER
   Full-width conversion section with cosmic bg
   and neon pulsing button
   ============================================ */
.cta-banner {
    position: relative;
    padding: 48px 0;
    text-align: center;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--card) 0%,
        #161a2e 30%,
        #1a1540 60%,
        #1e1438 100%
    );
    z-index: 0;
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 30% 50%, rgba(0, 229, 255, 0.06), transparent),
        radial-gradient(ellipse 50% 80% at 70% 50%, rgba(255, 45, 120, 0.05), transparent);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

.cta-banner-headline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cta-banner-subtext {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-banner-microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 12px;
    margin-bottom: 0;
}

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

    .cta-banner-headline {
        font-size: 36px;
    }

    .cta-banner-subtext {
        font-size: 17px;
    }
}

/* ============================================
   FAQ ACCORDION
   Dark graphite bars with cyan chevron,
   smooth expand animation
   ============================================ */
.faq-section {
    padding: 56px 0;
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(138, 143, 160, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
    min-height: 48px;
    transition: border-color 0.25s ease;
    border-left: 3px solid transparent;
}

.faq-question:hover {
    border-left-color: rgba(0, 229, 255, 0.4);
}

.faq-question[aria-expanded="true"] {
    border-left-color: var(--primary);
}

@media (min-width: 1024px) {
    .faq-question {
        padding: 20px 24px;
        font-size: 17px;
    }
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px 16px 23px;
    font-size: 15px;
    color: #c8cad4;
    line-height: 1.6;
}

.faq-answer[hidden] {
    display: none;
}

@media (min-width: 1024px) {
    .faq-answer {
        padding: 0 24px 20px 27px;
        font-size: 16px;
    }
}

.faq-answer p {
    margin-bottom: 8px;
}

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

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   INFO TABLE
   Responsive with stacked card layout on mobile
   Alternating rows, highlighted recommended
   ============================================ */
.info-table-section {
    padding: 32px 0;
}

.info-table-heading {
    text-align: center;
    margin-bottom: 24px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.info-table thead {
    display: none;
}

.info-table th {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 14px 16px;
    text-align: left;
    background: var(--card);
    border-bottom: 1px solid rgba(138, 143, 160, 0.15);
}

.info-table td {
    padding: 10px 16px;
    color: var(--foreground);
    font-size: 15px;
    border-bottom: 1px solid rgba(138, 143, 160, 0.08);
}

/* Mobile: stacked card layout */
.info-table tbody tr {
    display: block;
    background: var(--card);
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.info-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(138, 143, 160, 0.06);
}

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

.info-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Highlighted row */
.info-table-highlight {
    border-left: 3px solid var(--primary) !important;
}

@media (min-width: 768px) {
    .info-table thead {
        display: table-header-group;
    }

    .info-table tbody tr {
        display: table-row;
        background: transparent;
        margin-bottom: 0;
        border-radius: 0;
        padding: 0;
        border: none;
    }

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

    .info-table tbody tr:nth-child(even) {
        background: #151828;
    }

    .info-table tbody td {
        display: table-cell;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(138, 143, 160, 0.08);
    }

    .info-table tbody td::before {
        display: none;
    }

    .info-table-highlight {
        border-left: none !important;
        background: rgba(0, 229, 255, 0.05) !important;
    }

    .info-table-highlight td:first-child {
        border-left: 3px solid var(--primary);
    }
}

/* ============================================
   TRUST BADGE ROW
   Grayscale logos in centered flex row
   Full opacity on hover
   ============================================ */
.trust-badge-section {
    padding: 32px 0;
}

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

.trust-badge-label {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

@media (min-width: 1024px) {
    .trust-badge-row {
        gap: 24px;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
    min-width: 48px;
    min-height: 48px;
}

.trust-badge img {
    height: 28px;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.25s ease;
}

.trust-badge:hover img {
    filter: grayscale(0%) brightness(1);
}

@media (min-width: 1024px) {
    .trust-badge img {
        height: 32px;
    }
}

.trust-badge-icon {
    font-size: 24px;
    color: var(--muted-foreground);
    transition: color 0.25s ease;
}

.trust-badge:hover .trust-badge-icon {
    color: var(--foreground);
}

.trust-badge-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #B0B4C3;
    letter-spacing: 0.02em;
    padding: 6px 12px;
    background: rgba(42, 45, 62, 0.6);
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.trust-badge:hover .trust-badge-text {
    color: var(--foreground);
    background: rgba(42, 45, 62, 0.8);
}

/* ============================================
   SEO CONTENT BLOCKS
   Max-width 900px for optimal reading
   Structured headings, tables, lists, quotes
   ============================================ */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 16px;
}

@media (min-width: 768px) {
    .seo-content {
        padding: 56px 24px;
    }
}

@media (min-width: 1024px) {
    .seo-content {
        padding: 96px 24px;
    }
}

.seo-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 22px;
}

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

.seo-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 18px;
}

@media (min-width: 1024px) {
    .seo-content h2 {
        font-size: 30px;
        margin-top: 56px;
    }

    .seo-content h3 {
        font-size: 22px;
        margin-top: 40px;
    }
}

.seo-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.seo-content a:hover {
    color: var(--secondary);
}

.seo-content ul,
.seo-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

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

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

.seo-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    padding-left: 4px;
}

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

/* Inline table within SEO content */
.seo-content .table-wrapper {
    margin: 24px 0;
    border-radius: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
}

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

.seo-content thead th {
    background: var(--card);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.seo-content tbody td {
    padding: 12px 16px;
    font-size: 15px;
    border-bottom: 1px solid rgba(138, 143, 160, 0.08);
}

.seo-content tbody tr:nth-child(odd) {
    background: rgba(21, 24, 40, 0.5);
}

.seo-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--foreground);
    background: rgba(26, 29, 46, 0.5);
    border-radius: 0 8px 8px 0;
}

.seo-content blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR box, callout, stat highlight, details
   ============================================ */

/* TL;DR / Summary Box */
.summary-box {
    background: var(--card);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.summary-box-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.summary-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.summary-box li {
    margin-bottom: 6px;
    color: var(--foreground);
    font-size: 15px;
    line-height: 1.5;
}

.summary-box li::marker {
    color: var(--primary);
}

/* Callout / Highlight Box */
.callout-box {
    background: rgba(26, 29, 46, 0.7);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    border-left: 4px solid var(--primary);
}

.callout-box--warning {
    border-left-color: var(--secondary);
}

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

.callout-box-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--foreground);
}

.callout-box p {
    margin-bottom: 0;
    font-size: 15px;
    color: #c8cad4;
}

/* Stat Highlight */
.stat-highlight {
    text-align: center;
    padding: 32px 20px;
    background: var(--card);
    border-radius: 12px;
    margin: 24px 0;
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.stat-highlight-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-highlight-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 4px;
}

.stat-highlight-source {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Details / Summary - styled accordion */
.seo-content details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin: 16px 0;
    overflow: hidden;
}

.seo-content details summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    color: var(--foreground);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
}

.seo-content details summary::-webkit-details-marker {
    display: none;
}

.seo-content details summary::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.seo-content details[open] summary::after {
    content: '−';
}

.seo-content details > div,
.seo-content details > p {
    padding: 0 20px 16px;
    font-size: 15px;
    color: #c8cad4;
}

/* ============================================
   CRO PATTERNS
   Trust badges, comparison tables, social proof
   ============================================ */

/* Comparison table - recommended column highlight */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--card);
    letter-spacing: 0.03em;
    text-align: left;
}

.comparison-table td {
    padding: 12px 16px;
    font-size: 15px;
    border-bottom: 1px solid rgba(138, 143, 160, 0.08);
}

.comparison-table .recommended {
    background: rgba(0, 229, 255, 0.04);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table .recommended-header {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(123, 47, 255, 0.1));
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    border-top: 2px solid var(--primary);
}

/* Quick stat pills */
.stat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    white-space: nowrap;
    gap: 6px;
}

.stat-pill-icon {
    color: var(--primary);
}

/* Badge / Tag */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-primary {
    background: rgba(0, 229, 255, 0.15);
    color: #5CF0FF;
}

/* Badge secondary - darkened pink for WCAG AA contrast with white text (4.5:1+) */
.badge-secondary {
    background: #C4245E;
    color: #ffffff;
    font-weight: 700;
}

.badge-accent {
    background: rgba(123, 47, 255, 0.25);
    color: #c9a5ff;
}

/* Live Dot Indicator */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: livePulse 1.5s ease-in-out infinite;
    margin-right: 6px;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   SPLIT SECTIONS
   Two-column layout for feature highlights
   ============================================ */
.split-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 56px 0;
}

.split-section-content {
    flex: 1;
    min-width: 0;
}

.split-section-visual {
    flex: 1;
    min-width: 0;
    text-align: center;
}

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

@media (min-width: 1024px) {
    .split-section {
        padding: 96px 0;
        gap: 64px;
    }
}

/* ============================================
   FOOTER
   Four-column layout on desktop, stacked mobile
   Dark gradient, payment logos, legal badges
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #0c0e16 0%, #0a0c14 100%);
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 16px 32px;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 64px 24px 40px;
    }
}

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

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

.footer-logo {
    margin-bottom: 12px;
    display: inline-flex;
}

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

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color 0.25s ease;
}

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

/* Payment methods strip */
.footer-payments {
    text-align: center;
    padding: 24px 16px;
    border-top: 1px solid var(--border);
}

.footer-payments-label {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-payments-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(42, 45, 62, 0.5);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    min-height: 32px;
    transition: color 0.25s ease, background 0.25s ease;
}

.payment-badge:hover {
    color: var(--foreground);
    background: rgba(42, 45, 62, 0.8);
}

/* Footer bottom bar */
.footer-bottom {
    padding: 20px 16px;
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

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

.footer-legal-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
}

.license-badge,
.responsible-badge {
    font-size: 13px;
    color: var(--muted-foreground);
}

.footer-copyright {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   SCROLL ANIMATIONS
   Fade-in-up on viewport entry via IntersectionObserver
   Start hidden, reveal with .is-visible
   ============================================ */
html.js-animate .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* Staggered children animation */
.game-card.animate-on-scroll {
    transition-delay: var(--stagger-delay, 0ms);
}

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

    .btn-pulse {
        animation: none;
    }

    .live-dot {
        animation: none;
    }
}

/* ============================================
   ACCESS PAGE
   Minimal centered layout for redirect page
   ============================================ */
.access-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
    text-align: center;
    padding: 48px 16px;
}

.access-page .logo-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.access-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .access-heading {
        font-size: 32px;
    }
}

.access-subtext {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.access-spinner {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 24px 0;
}

.access-spinner span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    animation: spinnerBounce 1.4s ease-in-out infinite both;
}

.access-spinner span:nth-child(2) {
    animation-delay: 0.16s;
}

.access-spinner span:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes spinnerBounce {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

.access-fallback {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 24px;
}

/* ============================================
   SPIELE PAGE - Hero Pixel Cyberpunk Override
   ============================================ */
.hero-spiele::before {
    background:
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(0, 229, 255, 0.5), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255, 45, 120, 0.4), transparent),
        radial-gradient(2px 2px at 50% 10%, rgba(123, 47, 255, 0.5), transparent),
        radial-gradient(1px 1px at 70% 60%, rgba(0, 229, 255, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 90% 30%, rgba(255, 45, 120, 0.3), transparent),
        radial-gradient(1px 1px at 20% 50%, rgba(232, 234, 240, 0.3), transparent),
        radial-gradient(1px 1px at 60% 85%, rgba(123, 47, 255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 80% 45%, rgba(0, 229, 255, 0.3), transparent),
        radial-gradient(1px 1px at 40% 35%, rgba(255, 45, 120, 0.2), transparent),
        radial-gradient(2px 2px at 55% 55%, rgba(232, 234, 240, 0.2), transparent) !important;
}

.hero-spiele::after {
    background:
        radial-gradient(ellipse 80% 60% at 30% 70%, rgba(123, 47, 255, 0.08), transparent),
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(0, 229, 255, 0.06), transparent),
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(255, 45, 120, 0.04), transparent) !important;
}

/* Neon accent text utility for accent color */
.neon-text-accent {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Crash Games Section - violet accent background */
.crash-games-section {
    position: relative;
}

.crash-games-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(123, 47, 255, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   BONUS PAGE - Hero Pink Glow Override
   ============================================ */
.hero-bonus::after {
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 45, 120, 0.08), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 45, 120, 0.06), transparent),
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(123, 47, 255, 0.05), transparent) !important;
}

/* ============================================
   BONUS PAGE - Steps List
   ============================================ */
.bonus-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color 0.25s ease;
}

.bonus-step-item:hover {
    border-color: rgba(0, 229, 255, 0.25);
}

.bonus-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--primary-foreground);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.bonus-step-item strong {
    display: block;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.bonus-step-item p {
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .bonus-step-item {
        padding: 20px 24px;
    }

    .bonus-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ============================================
   BONUS PAGE - Cashback Terms List
   ============================================ */
.cashback-terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.cashback-terms-list li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
}

/* ============================================
   BONUS PAGE - Referral Card
   ============================================ */
.referral-card {
    background: var(--card);
    border: 1px solid rgba(123, 47, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
}

.referral-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.referral-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.referral-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .referral-card {
        padding: 40px 32px;
    }

    .referral-card-inner {
        gap: 28px;
        align-items: center;
    }

    .referral-icon {
        font-size: 48px;
    }
}

/* ============================================
   ZAHLUNGEN PAGE - Crypto Benefits Section
   ============================================ */
.crypto-benefits-section .feature-mini-cards {
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
    .crypto-benefits-section .feature-mini-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   ZAHLUNGEN PAGE - KYC List Styling
   ============================================ */
.seo-list li::marker {
    color: var(--primary);
}

/* ============================================
   UTILITY CLASSES
   Spacing, text alignment, visibility helpers
   ============================================ */
.text-center {
    text-align: center;
}

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

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

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

/* Fix link-in-text-block: ensure links within .text-muted are distinguishable */
.text-muted a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Flex utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Feature mini-cards for split sections */
.feature-mini-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 24px;
}

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

.feature-mini-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

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

.feature-mini-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.feature-mini-card-desc {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

/* Loyalty progress bar visual */
.progress-bar-wrapper {
    background: var(--card);
    border-radius: 100px;
    height: 12px;
    overflow: hidden;
    margin: 16px 0;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    transition: width 0.6s ease;
}

/* Category filter pills (visual only) */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.filter-pill {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.filter-pill:hover,
.filter-pill--active {
    color: var(--primary);
    border-color: var(--primary);
}

/* Bonus tier card accents */
.bonus-tier-highlight {
    border-color: var(--primary) !important;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

/* ============================================
   HOMEPAGE - Hero Microcopy
   ============================================ */
.hero-microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ============================================
   HOMEPAGE - Bonus Tiers Grid
   4-column on desktop, 2 on mobile
   ============================================ */
.bonus-tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.bonus-tier-card {
    background: var(--card);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.bonus-tier-card:first-child {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.12);
}

.bonus-tier-card:hover {
    transform: scale(1.02);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.12), 0 4px 20px rgba(255, 45, 120, 0.08);
}

.bonus-tier-header {
    margin-bottom: 12px;
}

.bonus-tier-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.bonus-tier-percent {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .bonus-tier-percent {
        font-size: 44px;
    }
}

.bonus-tier-detail {
    font-size: 15px;
    color: var(--foreground);
    margin-bottom: 4px;
}

.bonus-tier-spins {
    font-size: 13px;
    color: #FF6CA8;
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 20px;
}

.bonus-tier-wager {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
    background: rgba(42, 45, 62, 0.5);
    padding: 4px 10px;
    border-radius: 100px;
}

@media (min-width: 1024px) {
    .bonus-tier-card {
        padding: 28px 20px;
    }
}

/* ============================================
   HOMEPAGE - Cashback Section
   ============================================ */
.cashback-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: var(--card);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    padding: 32px 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .cashback-card {
        flex-direction: row;
        padding: 48px 40px;
        gap: 48px;
    }
}

.cashback-card-content {
    flex: 1.5;
    min-width: 0;
}

.cashback-card-content h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .cashback-card-content h2 {
        font-size: 30px;
    }
}

.cashback-card-content p {
    margin-bottom: 24px;
}

.cashback-card-visual {
    flex: 1;
    min-width: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .cashback-card-visual {
        max-width: 280px;
    }
}

/* ============================================
   HOMEPAGE - Explore Cards Grid
   Internal navigation to all pages
   ============================================ */
.explore-cards-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

.explore-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    min-height: 48px;
}

.explore-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
    transform: translateY(-2px);
}

.explore-card-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
}

.explore-card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.explore-card:hover .explore-card-title {
    color: var(--primary);
}

.explore-card-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 1024px) {
    .explore-card {
        padding: 32px 24px;
    }
}
