/* ============================================
   XON CASINO - Design System
   Dark neon-luxe aesthetic with holographic accents
   Mobile-first responsive CSS
   ============================================ */

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

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

body {
    font-family: "Exo 2", system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - Orbitron headings, Exo 2 body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", "Exo 2", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
}

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

h3 {
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.625rem);
    font-weight: 500;
    margin-bottom: 16px;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw + 0.25rem, 1.375rem);
    font-weight: 500;
    margin-bottom: 12px;
}

p {
    margin-bottom: 24px;
    color: var(--foreground);
}

strong, b {
    font-weight: 600;
}

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

/* Links inside .text-muted must be distinguishable without relying on color alone */
.text-muted a {
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.4);
    text-underline-offset: 3px;
}

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

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

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

/* Neon glow text effect for key numbers */
.neon-text {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    text-shadow:
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 40px rgba(230, 25, 110, 0.4);
}

.neon-text--cyan {
    text-shadow:
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 40px rgba(0, 229, 255, 0.4);
}

/* ============================================
   LAYOUT - Container & spacing system (8px grid)
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.section {
    padding-top: 48px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section--dark {
    background-color: rgba(10, 10, 18, 0.6);
}

.section--card {
    background-color: var(--card);
}

/* Full-bleed sections */
.full-bleed {
    width: 100%;
}

/* ============================================
   HEADER - Fixed frosted glass with neon accents
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(13, 13, 20, 0.92);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

@media (min-width: 1025px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(13, 13, 20, 0.85);
    }
}

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

@media (min-width: 768px) {
    .header-inner {
        padding: 0 28px;
    }
}

/* 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: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-text-accent {
    color: #ff4d94;
}

/* 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;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--foreground);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Header Action Buttons */
.header-actions {
    display: none;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn-register {
    color: var(--primary-foreground);
    background: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 12px rgba(230, 25, 110, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-register:hover {
    background: #ff3584;
    box-shadow: 0 0 24px rgba(230, 25, 110, 0.6);
    color: var(--primary-foreground);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 12px;
    flex-shrink: 0;
}

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

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

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) 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(--background);
        overflow-y: auto;
        padding: 24px 20px;
    }

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

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

    .main-nav .nav-link {
        min-height: 48px;
        font-size: 1.125rem;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    /* Show CTA buttons inside mobile menu */
    .main-nav::after {
        content: "";
        display: block;
        margin-top: 24px;
    }

    .header-actions {
        display: none;
    }

    .main-nav.is-open ~ .header-actions {
        display: none;
    }

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

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

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

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

/* ============================================
   BUTTONS - Primary, Ghost, Sizes
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    min-height: 48px;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-foreground);
    background: #d4155f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}

.btn-primary:hover {
    background: #e6196e;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(230, 25, 110, 0.5);
    color: var(--primary-foreground);
}

.btn-lg {
    padding: 16px 36px;
    min-height: 56px;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 8px 20px;
    min-height: 40px;
    font-size: 0.875rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    min-height: 48px;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Pulsing neon glow for CTA buttons */
.btn-glow {
    box-shadow: 0 0 12px rgba(230, 25, 110, 0.3), 0 0 4px rgba(230, 25, 110, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-glow:hover {
    animation: none;
    box-shadow: 0 0 24px rgba(230, 25, 110, 0.6), 0 0 48px rgba(0, 229, 255, 0.2);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(230, 25, 110, 0.3), 0 0 4px rgba(230, 25, 110, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.4), 0 0 8px rgba(0, 229, 255, 0.2);
    }
}

/* ============================================
   HERO SECTION - Full-viewport with holographic gradient
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    padding-top: calc(var(--header-height) + 48px);
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 80px 28px;
        padding-top: calc(var(--header-height) + 80px);
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg,
        var(--background) 0%,
        #1a0a2e 25%,
        #0d1b3e 50%,
        #1a0a2e 75%,
        var(--background) 100%);
    background-size: 400% 400%;
    animation: hero-gradient 15s ease infinite;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(230, 25, 110, 0.08) 0%, transparent 60%);
}

@keyframes hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    margin-bottom: 16px;
}

.hero__amount {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 5rem);
    display: block;
    color: var(--primary);
    text-shadow:
        0 0 20px rgba(230, 25, 110, 0.6),
        0 0 40px rgba(230, 25, 110, 0.3),
        0 0 80px rgba(0, 229, 255, 0.15);
    animation: neon-flicker 3s ease-in-out infinite;
}

@keyframes neon-flicker {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(230, 25, 110, 0.6),
            0 0 40px rgba(230, 25, 110, 0.3);
    }
    50% {
        text-shadow:
            0 0 20px rgba(0, 229, 255, 0.6),
            0 0 40px rgba(0, 229, 255, 0.3);
    }
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hero minimal (for informational pages) */
.hero--minimal {
    min-height: 40vh;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .hero--minimal {
        min-height: 50vh;
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 60px;
    }
}

.hero--minimal .hero__bg {
    animation: none;
    background: linear-gradient(180deg, #0e0e1e 0%, var(--background) 100%);
}

/* ============================================
   GAME CARD GRID - 3 col desktop, scroll mobile
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.game-grid--scrollable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 8px;
}

.game-grid--scrollable::-webkit-scrollbar {
    display: none;
}

.game-grid--scrollable .game-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

@media (min-width: 480px) {
    .game-grid--scrollable .game-card {
        flex: 0 0 280px;
    }
}

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

    .game-grid--scrollable {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow-x: visible;
    }

    .game-grid--scrollable .game-card {
        flex: none;
    }
}

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

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

.game-card {
    position: relative;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    min-width: 0;
}

.game-card:hover {
    transform: scale(1.04);
    border-color: var(--primary);
    box-shadow:
        0 8px 32px rgba(230, 25, 110, 0.15),
        0 0 16px rgba(0, 229, 255, 0.1);
}

.game-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.08);
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 20, 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__info {
    padding: 16px 20px;
}

@media (min-width: 768px) {
    .game-card__info {
        padding: 16px 28px 20px;
    }
}

.game-card__title {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.game-card__rtp {
    font-size: 0.8125rem;
    color: var(--accent);
    margin-left: 8px;
}

/* ============================================
   BONUS TIER CARDS - Oversized glowing amounts
   ============================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bonus-grid--row {
    gap: 20px;
}

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

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

.bonus-card {
    position: relative;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    min-width: 0;
}

.bonus-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(230, 25, 110, 0.15);
    transform: translateY(-4px);
}

.bonus-card__shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: shimmer-slide 3s linear infinite;
}

@keyframes shimmer-slide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.bonus-card__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
}

.bonus-card__content {
    padding: 20px;
    padding-left: 24px;
}

@media (min-width: 768px) {
    .bonus-card__content {
        padding: 28px;
        padding-left: 32px;
    }
}

.bonus-card__amount {
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary);
    text-shadow:
        0 0 10px rgba(230, 25, 110, 0.5),
        0 0 20px rgba(0, 229, 255, 0.2);
    margin-bottom: 8px;
    line-height: 1.1;
}

.bonus-card__label {
    font-family: "Exo 2", sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.bonus-card__desc {
    font-size: 0.9375rem;
    color: var(--foreground);
    margin-bottom: 12px;
}

.bonus-card__terms {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.bonus-card__cta {
    width: 100%;
}

/* ============================================
   FAQ ACCORDION - Details/Summary with CSS animation
   ============================================ */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-left: 3px solid var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    min-height: 48px;
    cursor: pointer;
    list-style: none;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

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

.faq-question::marker {
    content: "";
}

@media (min-width: 768px) {
    .faq-question {
        padding: 18px 28px;
        font-size: 1.0625rem;
    }
}

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

.faq-question__text {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .faq-answer {
        padding: 0 28px 24px;
    }
}

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

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

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.faq-answer ul {
    list-style: disc;
}

.faq-answer ol {
    list-style: decimal;
}

.faq-answer li {
    margin-bottom: 6px;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.3);
    text-underline-offset: 3px;
}

/* ============================================
   CTA BANNER - Full-width conversion band
   ============================================ */
.cta-banner {
    position: relative;
    width: 100%;
    padding: 48px 20px;
    text-align: center;
    overflow: clip;
}

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

.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg,
        #0d0d14 0%,
        #1a0a2e 30%,
        #0a1a3e 60%,
        #0d0d14 100%);
    background-size: 300% 300%;
    animation: cta-gradient 15s ease infinite;
}

@keyframes cta-gradient {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner__headline {
    font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(230, 25, 110, 0.3);
}

.cta-banner__text {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin-bottom: 28px;
}

.cta-banner__btn {
    margin-bottom: 16px;
}

.cta-banner__micro {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   PROVIDER / PAYMENT LOGO STRIP
   ============================================ */
.logo-strip {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .logo-strip {
        padding: 28px 0;
    }
}

.logo-strip__label {
    font-family: "Exo 2", sans-serif;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.logo-strip__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 16px;
}

@media (max-width: 767px) {
    .logo-strip__row {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .logo-strip__row::-webkit-scrollbar {
        display: none;
    }
}

.logo-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--foreground);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.logo-strip__item:hover {
    opacity: 1;
    border-color: var(--accent);
}

.logo-strip__icon {
    font-size: 1.125rem;
    line-height: 1;
}

.logo-strip__name {
    font-weight: 500;
}

/* ============================================
   TRUST SIGNALS BAR
   ============================================ */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px;
    background: rgba(20, 20, 34, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .trust-bar {
        grid-template-columns: repeat(4, 1fr);
        padding: 24px 28px;
    }
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 8px;
}

.trust-bar__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.trust-bar__label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* ============================================
   SEO CONTENT BLOCK - Rich text styling
   ============================================ */
.seo-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.seo-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 16px;
}

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

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

.seo-content p {
    margin-bottom: 24px;
    max-width: 75ch;
}

.seo-content ul,
.seo-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
    max-width: 75ch;
}

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

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

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

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

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

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

.seo-content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--foreground);
}

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

.seo-content blockquote p:last-child {
    margin-bottom: 0;
}

/* ============================================
   TABLES - Responsive with sticky first column
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.seo-content table,
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 0;
}

.seo-content table thead th,
.data-table thead th {
    background: var(--secondary);
    color: var(--accent);
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--border);
}

.seo-content table tbody td,
.data-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    vertical-align: top;
}

.seo-content table tbody tr:nth-child(even) td,
.data-table tbody tr:nth-child(even) td {
    background: rgba(26, 26, 58, 0.3);
}

.seo-content table tbody tr:hover td,
.data-table tbody tr:hover td {
    background: rgba(0, 229, 255, 0.03);
}

/* Gold-themed table for VIP/Live Casino */
.data-table--gold thead th {
    color: var(--gold);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout {
    padding: 20px 24px;
    margin-bottom: 32px;
    background: var(--card);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.callout--warning {
    border-left-color: #F59E0B;
}

.callout--tip {
    border-left-color: #10B981;
}

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

.callout__title {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    color: var(--foreground);
}

.callout a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

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

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

/* ============================================
   STAT HIGHLIGHT - Large number + label
   ============================================ */
.stat-highlight {
    text-align: center;
    padding: 24px;
}

.stat-highlight__number {
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    text-shadow: 0 0 10px rgba(230, 25, 110, 0.4);
    display: block;
    margin-bottom: 8px;
}

.stat-highlight__label {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.stat-highlight__source {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 4px;
    display: block;
}

/* Stat row layout */
.stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

/* ============================================
   SUMMARY / TL;DR BOX
   ============================================ */
.summary-box {
    padding: 24px;
    margin-bottom: 32px;
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: 12px;
    position: relative;
}

.summary-box__title {
    font-family: "Orbitron", sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 12px;
}

.summary-box p:last-child,
.summary-box ul:last-child {
    margin-bottom: 0;
}

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

.summary-box li {
    margin-bottom: 6px;
}

/* ============================================
   PULL QUOTE - Oversized quote for emphasis
   ============================================ */
.pull-quote {
    padding: 32px;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.pull-quote__text {
    font-family: "Exo 2", sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
    margin-bottom: 12px;
}

.pull-quote__attribution {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   COMPARISON TABLE - Highlighted column
   ============================================ */
.comparison-table .highlight-col {
    background: rgba(230, 25, 110, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table thead .highlight-col {
    background: rgba(230, 25, 110, 0.15);
    color: #ff6da4;
    font-weight: 700;
}

/* ============================================
   LOYALTY PROGRESS BAR
   ============================================ */
.loyalty-progress {
    width: 100%;
    background: var(--secondary);
    border-radius: 20px;
    height: 12px;
    overflow: hidden;
    margin: 16px 0;
}

.loyalty-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 20px;
    transition: width 1s ease;
}

/* Loyalty milestones */
.loyalty-milestones {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    margin-top: 12px;
}

.loyalty-milestone {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.loyalty-milestone__level {
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

/* ============================================
   FEATURE CARDS - For daily quests, tools, etc.
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

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

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.08);
}

.feature-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.feature-card__title {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.feature-card__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   PAYMENT & CRYPTO CARDS
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

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

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

.payment-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color 0.3s ease;
    min-width: 0;
}

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

.payment-card__icon {
    font-size: 1.75rem;
    margin-bottom: 8px;
    display: block;
}

.payment-card__name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.payment-card__detail {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ============================================
   SOCIAL PROOF - Review cards
   ============================================ */
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    min-width: 0;
}

.review-card__stars {
    color: var(--gold);
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.review-card__text {
    font-size: 0.9375rem;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--foreground);
}

.review-card__author {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

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

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

/* Stagger children animation */
.animate-on-scroll .game-card,
.animate-on-scroll .bonus-card,
.animate-on-scroll .feature-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.is-visible .game-card,
.animate-on-scroll.is-visible .bonus-card,
.animate-on-scroll.is-visible .feature-card {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FOOTER - Dark bottom section
   ============================================ */
.site-footer {
    background: #08080e;
    border-top: 1px solid var(--border);
    margin-top: 48px;
}

@media (min-width: 768px) {
    .site-footer {
        margin-top: 80px;
    }
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

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

.footer-brand .logo-text {
    font-size: 1.125rem;
}

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

.footer-heading {
    font-family: "Exo 2", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--foreground);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

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

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    background: #060610;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        padding: 24px 28px;
    }
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    white-space: nowrap;
    text-decoration: none;
}

.trust-badge.age-badge {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    color: #ff6da4;
    border-color: #ff6da4;
    font-size: 0.875rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   HERO - Live Casino gold variant
   ============================================ */
.hero__bg--live {
    background: linear-gradient(135deg,
        var(--background) 0%,
        #1a1000 20%,
        #1a0a2e 40%,
        #0d1b3e 60%,
        #1a0a12 80%,
        var(--background) 100%);
    background-size: 400% 400%;
    animation: hero-gradient 15s ease infinite;
}

.hero__bg--live::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 60%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 40%, rgba(230, 25, 110, 0.06) 0%, transparent 50%);
}

.hero__amount--gold {
    color: var(--gold);
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(230, 25, 110, 0.15);
}

/* ============================================
   HERO CHARACTER - Cyberpunk silhouette
   ============================================ */
.hero__character {
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 280px;
    height: auto;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,1) 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,1) 60%, transparent 100%);
    display: none;
}

@media (min-width: 1024px) {
    .hero__character {
        display: block;
        right: 5%;
        width: 340px;
        opacity: 0.35;
    }
}

@media (min-width: 1280px) {
    .hero__character {
        right: 8%;
        width: 400px;
        opacity: 0.4;
    }
}

/* ============================================
   LOYALTY CARD - Index page teaser
   ============================================ */
.loyalty-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
}

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

/* ============================================
   MAIN CONTENT - Offset for fixed header
   ============================================ */
#main-content {
    padding-top: 0;
    min-height: 60vh;
}

/* ============================================
   SECTION HEADINGS with neon underline
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 32px;
}

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

.section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ============================================
   LOADING SPINNER - For proceed page
   ============================================ */
.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-right-color: var(--accent);
    border-radius: 50%;
    animation: spinner-rotate 1s linear infinite;
    margin: 24px auto;
}

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

/* ============================================
   PROCEED PAGE - Minimal centered layout
   ============================================ */
.proceed-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 24px;
    background: var(--background);
}

.proceed-page .logo-text {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.proceed-text {
    font-family: "Orbitron", sans-serif;
    font-size: 1.25rem;
    color: var(--foreground);
    animation: proceed-pulse 2s ease-in-out infinite;
}

@keyframes proceed-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.proceed-fallback {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.proceed-fallback a {
    color: var(--accent);
}

/* ============================================
   RESPONSIBLE GAMBLING PAGE - Subdued styling
   ============================================ */
.rg-section {
    padding: 20px 0;
}

@media (min-width: 768px) {
    .rg-section {
        padding: 28px 0;
    }
}

.rg-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
    padding: 24px;
    margin-bottom: 20px;
}

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

.rg-card a {
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease, color 0.3s ease;
}

.rg-card a:hover {
    text-decoration-color: var(--accent);
    color: var(--accent);
}

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

.rg-card h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.rg-card h3:first-child {
    margin-top: 0;
}

/* Age badge card variant */
.rg-card--age {
    text-align: left;
}

.rg-age-badge-large {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}

/* Warning signs list */
.rg-warning-list {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.rg-warning-list li {
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.rg-warning-list li::marker {
    color: var(--accent);
}

/* Protection tools grid */
.rg-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.rg-tool-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.rg-tool-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.rg-tool-card__icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 12px;
}

.rg-tool-card__title {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.rg-tool-card__desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Help resources */
.rg-resource {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.rg-resource:hover {
    border-color: rgba(0, 229, 255, 0.3);
}

.rg-resource__name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--foreground);
}

.rg-resource__desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.rg-resource__contact {
    font-size: 0.875rem;
    color: var(--accent);
}

/* Contact box */
.rg-contact-box {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.rg-contact-box__email {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0;
}

.rg-contact-box__hours {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Hero variant for RG page - subdued, no animation */
.hero__bg--rg {
    animation: none;
    background: linear-gradient(180deg, #0e0e1e 0%, #0d0d14 60%, var(--background) 100%);
}

.hero__bg--rg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 60%);
}

.hero__title--rg {
    text-shadow: none;
    color: var(--foreground);
}

.rg-badge-18 {
    font-weight: 700;
    color: #ff6da4;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   GOLD ACCENT VARIANT - For Live Casino page
   ============================================ */
.gold-accent .bonus-card__shimmer {
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
    background-size: 200% 100%;
}

.gold-accent .bonus-card__accent {
    background: var(--gold);
}

.gold-accent .bonus-card__amount {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.gold-accent .faq-item[open] .faq-chevron {
    color: var(--gold);
}

/* ============================================
   WIDE BONUS CARD - Single full-width variant
   ============================================ */
.bonus-card--wide {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-card--wide {
        grid-template-columns: auto 1fr;
    }

    .bonus-card--wide .bonus-card__content {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .bonus-card--wide .bonus-card__amount {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* ============================================
   ACHIEVEMENT CHAINS - Bonuses page
   ============================================ */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

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

.achievement-chain {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.achievement-chain:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.08);
}

.achievement-chain__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.achievement-chain__title {
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 8px;
}

.achievement-chain__desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Bonus card details list */
.bonus-card__details {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.bonus-card__details li {
    padding: 6px 0;
    font-size: 0.9375rem;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.bonus-card__details li:last-child {
    border-bottom: none;
}

/* ============================================
   CATEGORY FILTERS - Spielautomaten page
   ============================================ */
.category-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 24px;
    justify-content: flex-start;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .category-filters {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        margin-bottom: 32px;
    }
}

.category-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 44px;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.category-filter:hover {
    color: var(--foreground);
    border-color: var(--accent);
}

.category-filter.active {
    color: var(--primary-foreground);
    background: #c9155f;
    border-color: #c9155f;
    box-shadow: 0 0 12px rgba(230, 25, 110, 0.3);
}

/* Hidden state for filtered game cards */
#category-grid .game-card.is-hidden {
    display: none;
}

/* ============================================
   PAYMENT CATEGORY GRID - Zahlungsmethoden page
   ============================================ */
.payment-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .payment-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.payment-category-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.payment-category-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.08);
}

.payment-category-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.payment-category-card__title {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    color: var(--foreground);
}

.payment-category-card__methods {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 8px;
    line-height: 1.4;
}

.payment-category-card__advantage {
    font-size: 0.8125rem;
    color: var(--accent);
    margin-bottom: 0;
    font-weight: 500;
}

/* ============================================
   KYC PROCESS STEPS - Zahlungsmethoden page
   ============================================ */
.kyc-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.kyc-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    min-width: 0;
}

.kyc-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--background);
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.kyc-step__title {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    color: var(--foreground);
}

.kyc-step__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   CRYPTO GRID - Zahlungsmethoden page
   ============================================ */
.crypto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.crypto-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.crypto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    background-size: 200% 100%;
    animation: shimmer-slide 3s linear infinite;
}

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

.crypto-card__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.crypto-card__name {
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: var(--foreground);
}

.crypto-card__speed {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.crypto-card__advantage {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   SPOTLIGHT GRID - Feature highlights
   ============================================ */
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.spotlight-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    min-width: 0;
}

.spotlight-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.spotlight-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.spotlight-card__icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.spotlight-card__title {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    color: var(--foreground);
}

.spotlight-card__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    line-height: 1.6;
}

.spotlight-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spotlight-card__features li {
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.spotlight-card__features li:last-child {
    border-bottom: none;
}

/* ============================================
   HERO PAYMENT ICONS - Floating icons in hero
   ============================================ */
.hero__payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero__pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    font-size: 1.5rem;
    line-height: 1;
    animation: pay-icon-float 3s ease-in-out infinite;
}

.hero__pay-icon:nth-child(2) { animation-delay: 0.3s; }
.hero__pay-icon:nth-child(3) { animation-delay: 0.6s; }
.hero__pay-icon:nth-child(4) { animation-delay: 0.9s; }
.hero__pay-icon:nth-child(5) { animation-delay: 1.2s; }
.hero__pay-icon:nth-child(6) { animation-delay: 1.5s; }

@keyframes pay-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (min-width: 768px) {
    .hero__pay-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

/* HERO AMOUNT - Cyan variant */
.hero__amount--cyan {
    color: var(--accent);
    text-shadow:
        0 0 20px rgba(0, 229, 255, 0.6),
        0 0 40px rgba(0, 229, 255, 0.3),
        0 0 80px rgba(230, 25, 110, 0.15);
}

/* HERO BG - Payments variant */
.hero__bg--payments {
    background: linear-gradient(135deg,
        var(--background) 0%,
        #0a1a2e 25%,
        #0d1b3e 50%,
        #0a1a2e 75%,
        var(--background) 100%);
    background-size: 400% 400%;
    animation: hero-gradient 15s ease infinite;
}

.hero__bg--payments::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 40% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 50%, rgba(230, 25, 110, 0.04) 0%, transparent 50%);
}

/* ============================================
   PRINT STYLES - Clean output
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .cta-banner,
    .mobile-menu-toggle,
    .btn-glow {
        display: none;
    }

    body {
        background: white;
        color: #111;
    }

    #main-content {
        padding-top: 0;
    }
}