/* ============================================
   XON CASINO - CYBERPUNK NEON-GRAFFITI DESIGN SYSTEM
   Fonts: Teko (headings) + Exo 2 (body)
   Theme: Dark midnight navy with neon accents
   ============================================ */

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

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

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

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

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

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

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

section {
    overflow: clip;
}

/* Screen reader only utility */
.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;
}

/* ============================================
   BASE TYPOGRAPHY
   Teko: industrial uppercase headings
   Exo 2: clean sci-fi body text
   ============================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Exo 2", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--foreground);
}

/* Mobile-first heading scale */
h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.625rem;
    font-weight: 600;
}

h3 {
    font-size: 1.375rem;
    font-weight: 500;
}

h4 {
    font-size: 1.1875rem;
    font-weight: 500;
}

/* Desktop heading scale */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.25rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1.375rem;
    }
}

p {
    margin-bottom: 1.5rem;
    max-width: 75ch;
}

a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

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

strong, b {
    font-weight: 600;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ============================================
   LINKS THAT SHOULD NOT BE UNDERLINED
   Navigation, buttons, cards, logos, header elements
   ============================================ */
.nav-link,
.btn,
.game-card,
.header-logo,
.footer-links a,
.provider-logo a,
.faq-answer a {
    text-decoration: none;
}

.nav-link:hover, .nav-link:focus-visible,
.footer-links a:hover, .footer-links a:focus-visible {
    text-decoration: none;
}

/* Re-apply underline specifically for faq-answer links */
.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   CONTAINER - max-width 1140px centered
   ============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

/* ============================================
   SECTION SPACING
   96px desktop / 56px mobile rhythm
   ============================================ */
.section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
    .section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.section__header {
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .section__header {
        margin-bottom: 3rem;
    }
}

/* ============================================
   NEON GLOW TEXT EFFECTS
   Applied to bonus stats, hero headlines, etc.
   ============================================ */
.neon-text-pink {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(255, 45, 120, 0.6), 0 0 30px rgba(255, 45, 120, 0.3);
}

.neon-text-cyan {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.3);
}

.neon-text-green {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6), 0 0 30px rgba(57, 255, 20, 0.3);
}

/* ============================================
   BUTTONS - Primary, Secondary, Outline
   .btn base / .btn-secondary (hot pink)
   .btn-primary (cyan) / .btn-outline-primary
   .btn-glow / .btn-pulse / .btn-full
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 0.75rem 2rem;
    min-height: 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
    white-space: nowrap;
    gap: 0.5rem;
}

.btn:hover, .btn:focus-visible {
    transform: translateY(-2px);
    text-decoration: none;
}

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

/* Secondary (hot pink) - primary CTA style */
/* Darkened from #ff2d78 to #d4235f for WCAG AA contrast with white text */
.btn-secondary {
    background-color: #d4235f;
    color: #ffffff;
}

.btn-secondary:hover, .btn-secondary:focus-visible {
    color: #ffffff;
    background-color: #b81d52;
}

/* Primary (cyan) */
.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover, .btn-primary:focus-visible {
    color: var(--primary-foreground);
    background-color: #00d4e6;
}

/* Outline primary (cyan border) */
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus-visible {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* Sizes */
.btn-sm {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    min-height: 40px;
}

.btn-lg {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    min-height: 56px;
}

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

/* Neon glow effect */
.btn-glow {
    box-shadow: 0 0 8px rgba(255, 45, 120, 0.4);
}

.btn-glow:hover, .btn-glow:focus-visible {
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.6), 0 0 40px rgba(255, 45, 120, 0.2);
}

.btn-outline-primary.btn-glow {
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.btn-outline-primary.btn-glow:hover, .btn-outline-primary.btn-glow:focus-visible {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.2);
}

/* Pulse animation - subtle glow every 4 seconds */
.btn-pulse {
    animation: btnPulse 4s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 85%, 100% {
        box-shadow: 0 0 8px rgba(255, 45, 120, 0.4);
    }
    92% {
        box-shadow: 0 0 24px rgba(255, 45, 120, 0.7), 0 0 48px rgba(255, 45, 120, 0.3);
    }
}

/* ============================================
   HEADER - Sticky frosted glass with neon glow
   z-index: 1000, neon bottom border
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: rgba(10, 14, 39, 0.92);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 240, 255, 0.08);
}

@media (min-width: 1024px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

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

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-text {
    font-family: "Teko", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    text-transform: uppercase;
    color: var(--foreground);
    letter-spacing: 0.02em;
    line-height: 1;
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

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

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--foreground);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover, .nav-link:focus-visible {
    color: var(--primary);
    background-color: rgba(0, 240, 255, 0.06);
    text-decoration: none;
}

/* Header action buttons */
.header-actions {
    display: none;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-shrink: 0;
    }
}

/* ============================================
   MOBILE MENU TOGGLE (hamburger)
   Visible below 1024px, z-index: 1001
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.burger-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"] .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* ============================================
   MOBILE NAV DRAWER
   Fixed, full-screen below header, opaque bg
   ============================================ */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background-color: var(--background);
        overflow-y: auto;
        padding: 1.5rem;
    }

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

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

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

    /* Mobile nav CTA buttons */
    .main-nav::after {
        content: "";
        display: block;
        height: 1rem;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }
}

@media (min-width: 1024px) {
    .mobile-nav-actions {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   Full-bleed with animated gradient background
   ============================================ */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 3.5rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1050 35%, #0a2a3a 70%, #0a0e27 100%);
    background-size: 300% 300%;
    animation: heroGradient 15s ease infinite;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 6rem;
    }
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero__stat {
    font-family: "Teko", sans-serif;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .hero__stat {
        font-size: 5rem;
    }
}

.hero__subtitle {
    font-family: "Exo 2", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero__subtitle {
        font-size: 1.125rem;
    }
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 480px) {
    .hero__ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.hero__image {
    margin-top: 2rem;
}

.hero__image img {
    max-height: 300px;
    width: auto;
}

@media (min-width: 1024px) {
    .hero__image img {
        max-height: 400px;
    }
}

/* ============================================
   GAME CARD GRID
   2-col mobile / 3-4 col desktop
   Snap-scroll variant on mobile
   ============================================ */
.game-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

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

@media (min-width: 1024px) {
    .game-card-grid[data-columns="4"],
    .game-card-grid:not([data-columns]) {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .game-card-grid[data-columns="3"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .game-card-grid[data-columns="6"] {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Mobile snap-scroll variant */
@media (max-width: 767px) {
    .game-card-grid--scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .game-card-grid--scroll .game-card {
        flex: 0 0 calc(50% - 0.5rem);
        scroll-snap-align: start;
    }
}

.game-card {
    display: block;
    background-color: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
    box-shadow: 0 2px 10px rgba(0, 240, 255, 0.06);
}

.game-card:hover, .game-card:focus-visible {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.15), 0 0 12px rgba(0, 240, 255, 0.1);
    color: var(--foreground);
    text-decoration: none;
}

.game-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

.game-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    line-height: 1.4;
}

.game-card__badge--green {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

/* Darkened pink badge for WCAG AA contrast with white text */
.game-card__badge--pink {
    background-color: #c41a5a;
    color: #ffffff;
}

.game-card__info {
    padding: 1rem;
}

.game-card__title {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--foreground);
    margin: 0;
    line-height: 1.2;
}

.game-card__provider {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.game-card__desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.375rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ============================================
   BONUS CARD
   Neon-glowing stat numbers, pink CTA
   ============================================ */
.bonus-card {
    background-color: var(--card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 240, 255, 0.25);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
    box-shadow: 0 2px 10px rgba(0, 240, 255, 0.06);
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.15);
}

.bonus-card--border-cyan {
    border-color: rgba(0, 240, 255, 0.3);
}

.bonus-card--border-pink {
    border-color: rgba(255, 45, 120, 0.3);
}

.bonus-card--border-green {
    border-color: rgba(57, 255, 20, 0.3);
}

.bonus-card__stat {
    font-family: "Teko", sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .bonus-card__stat {
        font-size: 4rem;
    }
}

.bonus-card__stat--pink {
    color: var(--secondary);
    text-shadow: 0 0 12px rgba(255, 45, 120, 0.6), 0 0 30px rgba(255, 45, 120, 0.3);
}

.bonus-card__stat--cyan {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.3);
}

.bonus-card__stat--green {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(57, 255, 20, 0.6), 0 0 30px rgba(57, 255, 20, 0.3);
}

.bonus-card__title {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bonus-card__details {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
}

.bonus-card__details li {
    font-family: "Exo 2", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    padding: 0.25rem 0;
    margin-bottom: 0;
}

.bonus-card__details li::before {
    content: "▸ ";
    color: var(--primary);
}

.bonus-card__divider {
    height: 1px;
    background-color: var(--border);
    margin: 1rem 0;
}

/* Bonus cards grid layout */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

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

/* ============================================
   FAQ ACCORDION
   Using <details>/<summary> - zero JS needed
   ============================================ */
.faq-accordion {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 48px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--foreground);
    list-style: none;
    transition: background-color 0.2s ease;
    border-left: 3px solid transparent;
}

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

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

.faq-question:hover {
    background-color: rgba(0, 240, 255, 0.04);
}

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

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

.faq-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease-out;
    display: flex;
    align-items: center;
}

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

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

@media (min-width: 1024px) {
    .faq-answer {
        padding: 0 2rem 1.5rem 2rem;
    }
}

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

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

/* ============================================
   CTA BANNER
   Full-bleed gradient with centered CTA
   ============================================ */
.cta-banner {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1050 50%, #0a2a3a 100%);
    text-align: center;
}

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

.cta-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-banner__headline {
    color: var(--foreground);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    max-width: 800px;
}

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

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

/* ============================================
   PROVIDER LOGO GRID
   Monochrome → color hover reveal
   ============================================ */
.provider-logo-grid {
    width: 100%;
}

.provider-logo-grid__label {
    font-family: "Teko", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

.provider-logo-grid__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .provider-logo-grid__row {
        gap: 1.5rem;
    }
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.5rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.provider-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.provider-logo img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.provider-logo__text {
    font-family: "Teko", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--foreground);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================================
   COMPARISON TABLE
   Responsive with horizontal scroll on mobile
   ============================================ */
.comparison-table-wrap {
    width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card);
    border-radius: 12px;
    overflow: hidden;
    font-family: "Exo 2", sans-serif;
    font-size: 0.9375rem;
    min-width: 500px;
}

.comparison-table thead th {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    text-transform: uppercase;
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    text-align: left;
    white-space: nowrap;
}

.comparison-table tbody td {
    padding: 0.75rem 1rem;
    color: var(--foreground);
    line-height: 1.5;
    border-top: 1px solid var(--border);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.comparison-table__highlight-col {
    border-top: 3px solid var(--secondary) !important;
    background-color: rgba(255, 45, 120, 0.04) !important;
}

.table-check {
    color: var(--accent);
    font-size: 1rem;
}

.table-x {
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* Stat numbers in table cells */
.comparison-table .table-stat {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
}

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

/* Summary / TL;DR box */
.tldr-box {
    background-color: var(--card);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.tldr-box__title {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tldr-box p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--foreground);
}

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

/* Callout / highlight box */
.callout-box {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

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

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

.callout-box__title {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.callout-box p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

/* Stat highlight */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.stat-highlight__number {
    font-family: "Teko", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.stat-highlight__label {
    font-family: "Exo 2", sans-serif;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-top: 0.375rem;
}

.stat-highlight__source {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
    font-style: italic;
}

/* Stat row */
.stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

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

/* Pull quote */
.pull-quote {
    position: relative;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--secondary);
}

.pull-quote blockquote {
    font-family: "Exo 2", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
    margin: 0;
}

.pull-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--muted-foreground);
}

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

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Exo 2", sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   SEO CONTENT SECTION
   Long-form text with proper hierarchy
   ============================================ */
.seo-content {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
    .seo-content {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.seo-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.seo-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.seo-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

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

.seo-content ul, .seo-content ol {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.seo-content li {
    margin-bottom: 0.375rem;
}

/* Table inside SEO content */
.seo-content .table-wrapper {
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* ============================================
   STEPS / PROCESS SECTION
   Numbered steps with connecting line
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.step-card__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), rgba(0, 240, 255, 0.3));
    font-family: "Teko", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.step-card__title {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-card__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   URGENCY BANNER
   Hot pink gradient, pulsing border
   ============================================ */
.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.15), rgba(255, 45, 120, 0.05));
    border: 2px solid var(--secondary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        border-color: var(--secondary);
        box-shadow: 0 0 0 0 rgba(255, 45, 120, 0.2);
    }
    50% {
        border-color: var(--secondary);
        box-shadow: 0 0 20px rgba(255, 45, 120, 0.3);
    }
}

.urgency-banner h2, .urgency-banner h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.urgency-banner p {
    color: var(--foreground);
    margin-bottom: 0;
    max-width: none;
}

/* ============================================
   LOYALTY / SPLIT SECTIONS
   Two-column split layout
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

/* Links inside split-section and tournament-teaser must be underlined for a11y */
.split-section a:not(.btn),
.tournament-teaser a:not(.btn) {
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

/* Staggered children */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.stagger-children > .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.stagger-children > .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }

/* ============================================
   FOOTER
   4-column grid collapsing to stacked
   ============================================ */
.site-footer {
    background-color: rgba(8, 10, 28, 0.95);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.footer-brand .footer-logo {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.footer-heading {
    font-family: "Teko", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover, .footer-links a:focus-visible {
    color: var(--primary);
    text-decoration: none;
}

.footer-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 30px;
    background-color: var(--card);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.trust-badge {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    white-space: nowrap;
}

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

/* ============================================
   FREISPIELE - Featured NDB card emphasis
   ============================================ */
.freispiele-featured-card .bonus-card {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15), 0 2px 10px rgba(57, 255, 20, 0.08);
}

.freispiele-featured-card .bonus-card:hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.25), 0 4px 24px rgba(57, 255, 20, 0.12);
}

@media (min-width: 768px) {
    .freispiele-featured-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================
   MAIN CONTENT - offset for fixed header
   ============================================ */
#main-content {
    padding-top: 0;
}

/* Pages without hero need top spacing */
.page-content-start {
    padding-top: calc(var(--header-height) + 2rem);
}

/* ============================================
   PAYMENTS HERO - subtle tech gradient
   ============================================ */
.hero--payments {
    background: linear-gradient(135deg, #0a0e27 0%, #0a1e3a 35%, #101840 65%, #0a0e27 100%);
    background-size: 300% 300%;
    animation: heroGradient 15s ease infinite;
    padding-bottom: 2rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero--payments {
        padding-bottom: 4rem;
    }
}

/* ============================================
   PAYMENT SECTION GROUP - spacing between groups
   ============================================ */
.payment-section-group {
    margin-bottom: 2rem;
}

.payment-section-group:last-child {
    margin-bottom: 0;
}

/* ============================================
   LIVE CASINO HERO - warm golden/amber tint
   ============================================ */
.hero--live {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1040 30%, #2a1530 55%, #0a2a3a 80%, #0a0e27 100%);
    background-size: 300% 300%;
    animation: heroGradient 15s ease infinite;
    padding-bottom: 2rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero--live {
        padding-bottom: 4rem;
    }
}

/* ============================================
   HOMEPAGE HERO - enhanced with badge & image
   ============================================ */
.hero--home,
.hero--slots {
    padding-bottom: 2rem;
    overflow: hidden;
}

/* Hero elements are always above the fold - make them visible immediately
   to prevent contrast failures from animate-on-scroll opacity:0 */
.hero .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Section headings must maintain readable contrast even before scroll animation fires */
.section-heading.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .hero--home,
    .hero--slots {
        padding-bottom: 4rem;
    }
}

.hero__badge {
    display: inline-block;
    font-family: "Exo 2", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    background-color: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.hero__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.pt-0 { padding-top: 0; }

/* ============================================
   FOCUS STYLES - accessibility
   ============================================ */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   SCROLLBAR - custom dark style
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--muted-foreground);
}

/* ============================================
   MOBILE NAV ACTIONS (inside drawer)
   ============================================ */
.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .mobile-nav-actions {
        display: none;
    }
}

/* ============================================
   SECTION HEADING - consistent spacing
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

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

.section-heading p {
    color: var(--muted-foreground);
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.section-heading p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}