/*
 * BillionaireSpin Casino - Design System
 * Dark luxury aesthetic: deep navy + neon green + gold
 * Mobile-first, single dark theme
 * ============================================
 */

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

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

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: "Nunito Sans", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.85;
}

ul, ol {
    list-style: none;
}

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

section {
    overflow: hidden;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Bebas Neue for display headings
   Nunito Sans for body
   ============================================ */

h1, h2, h3, h4 {
    font-family: "Bebas Neue", sans-serif;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
}

h2 {
    font-size: clamp(32px, 4vw, 52px);
}

h3 {
    font-size: clamp(24px, 3vw, 36px);
}

h4 {
    font-size: clamp(20px, 2.5vw, 28px);
}

p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 680px;
}

/* Gold-to-green gradient text - display numbers and key headings */
.text-gradient {
    background: linear-gradient(135deg, #F5C842 0%, #00FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold-only gradient */
.text-gold {
    background: linear-gradient(135deg, #F5C842 0%, #FFE066 50%, #F5C842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav link style */
.nav-link {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ============================================
   LAYOUT UTILITIES
   Container, sections, grids
   ============================================ */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 72px 0;
}

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

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

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

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

/* Grid helpers */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

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

/* Section heading group */
.section-heading {
    margin-bottom: 48px;
}

.section-heading--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading p {
    color: #7B8BAD;
    margin-top: 12px;
}

.section-heading--centered p {
    margin-left: auto;
    margin-right: auto;
    color: #7B8BAD;
}

/* ============================================
   HEADER
   Fixed top navigation bar
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.97);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #F5C842 0%, #FFE066 50%, #F5C842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Desktop nav - hidden on mobile */
.header-nav {
    display: none;
    flex: 1;
    justify-content: center;
}

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

/* Desktop CTA buttons - visible on desktop */
.header-ctas {
    display: none;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

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

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

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

/* ============================================
   MOBILE NAV DRAWER
   Full-height panel sliding from right
   ============================================ */

/* Mobile: nav is hidden by default */
@media (max-width: 1023px) {
    .header-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        z-index: 999;
        overflow-y: auto;
        padding: 32px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .header-nav.is-open {
        transform: translateX(0);
        pointer-events: all;
    }

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

    .nav-list li {
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 22px;
        letter-spacing: 0.08em;
        padding: 0 4px;
    }

    .nav-mobile-ctas {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
    }

    .header-ctas {
        display: none !important;
    }

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

/* Desktop: nav visible inline, hamburger hidden */
@media (min-width: 1024px) {
    .header-nav {
        display: flex;
        flex-direction: row;
        position: static;
        transform: none;
        background: transparent;
        overflow: visible;
        padding: 0;
        pointer-events: all;
    }

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

    .header-ctas {
        display: flex;
    }

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

/* ============================================
   BUTTONS
   Primary (neon green), Ghost, Small variants
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 18px 40px;
    min-height: 48px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.btn:active {
    transform: translateY(0);
}

/* Primary - neon green */
.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 0 rgba(0, 255, 127, 0);
}

.btn-primary:hover {
    box-shadow: 0 0 24px rgba(0, 255, 127, 0.5), 0 4px 16px rgba(0, 255, 127, 0.3);
    color: var(--primary-foreground);
    opacity: 1;
}

/* Pulsing glow for CTA buttons */
.btn-glow {
    animation: btn-pulse 2s infinite ease-in-out;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0, 255, 127, 0.4), 0 0 0 0 rgba(0, 255, 127, 0.2);
    }
    50% {
        box-shadow: 0 0 24px rgba(0, 255, 127, 0.7), 0 0 0 8px rgba(0, 255, 127, 0);
    }
}

/* Ghost button */
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

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

/* Ghost neon - softer CTA for informational pages */
.btn-ghost-neon {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost-neon:hover {
    background: rgba(0, 255, 127, 0.08);
    box-shadow: 0 0 16px rgba(0, 255, 127, 0.3);
}

/* Small button */
.btn-sm {
    font-size: 14px;
    padding: 10px 20px;
    min-height: 40px;
}

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

/* Large button */
.btn-lg {
    font-size: 22px;
    padding: 22px 56px;
    min-height: 60px;
}

@media (max-width: 480px) {
    .btn-lg {
        font-size: 18px;
        padding: 18px 32px;
    }
}

/* ============================================
   HERO SECTION
   Full viewport with globe canvas overlay
   ============================================ */

.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__canvas-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__canvas-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Gradient overlay so text is readable over canvas */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 26, 0.5) 0%,
        rgba(10, 14, 26, 0.3) 40%,
        rgba(10, 14, 26, 0.7) 80%,
        rgba(10, 14, 26, 0.95) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.hero__eyebrow {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero__h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.0;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.hero__sub {
    font-size: 17px;
    color: var(--muted-foreground);
    margin: 0 auto 32px;
    max-width: 560px;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite ease-in-out;
}

.hero__scroll-indicator svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Compact hero variant for inner pages */
.hero--compact {
    min-height: 60svh;
}

.hero--minimal {
    min-height: 40svh;
}

/* Private jet animation overlay */
.jet-container {
    position: absolute;
    top: 10%;
    right: -200px;
    z-index: 3;
    pointer-events: none;
}

.jet-svg {
    width: 160px;
    opacity: 0;
}

/* ============================================
   BONUS CARDS
   Casino promotion display cards
   ============================================ */

.bonus-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    min-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 255, 127, 0.12);
    border-color: rgba(0, 255, 127, 0.3);
}

.bonus-card__accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00FF7F 0%, #F5C842 100%);
    border-radius: 12px 12px 0 0;
}

.bonus-card__badge {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 4px;
    padding: 4px 10px;
    display: inline-block;
    width: fit-content;
}

.bonus-card__icon {
    font-size: 32px;
    line-height: 1;
}

.bonus-card__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1;
    background: linear-gradient(135deg, #F5C842 0%, #00FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card__freespins {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
    margin-top: -8px;
}

.bonus-card__label {
    font-size: 17px;
    color: var(--foreground);
    max-width: none;
    margin: 0;
}

.bonus-card__extra {
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
    max-width: none;
}

.bonus-card__code-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bonus-card__code-label {
    font-size: 14px;
    color: var(--muted-foreground);
}

.bonus-card__code {
    font-family: "Courier New", monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    background: var(--background);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 4px 10px;
    letter-spacing: 0.1em;
}

/* ============================================
   STAT BLOCKS
   Large metric display with CountUp animation
   ============================================ */

.stat-blocks-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    text-align: center;
}

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

    .stat-blocks-row--3col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 8px;
    min-width: 0;
    /* Ensure stat blocks are always visible - no opacity animation */
    opacity: 1 !important;
    transform: none !important;
}

.stat-block__number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 1;
    background: linear-gradient(135deg, #F5C842 0%, #00FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/*
 * Contrast note:
 * #6b7a99 on #0a0e1a = 4.46:1 (fails 4.5:1 AA for normal text)
 * #7B8BAD on #0a0e1a = ~5.1:1 (passes)
 * #7B8BAD on #111827 = ~4.6:1 (passes)
 * Using #7B8BAD everywhere for muted text on both backgrounds.
 */
.stat-block__label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7B8BAD;
}

.stat-block__source {
    font-size: 12px;
    font-style: italic;
    color: #7B8BAD;
}

/* ============================================
   FAQ ACCORDION
   Expandable question-answer pairs
   ============================================ */

.faq-accordion {
    background: var(--background);
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    min-height: 64px;
    color: var(--foreground);
    position: relative;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 127, 0.03);
}

.faq-question[aria-expanded="true"] {
    border-left: 3px solid var(--primary);
    padding-left: 21px;
    background: rgba(0, 255, 127, 0.04);
}

.faq-question__text {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(18px, 2.5vw, 24px);
    letter-spacing: 0.02em;
    line-height: 1.2;
    flex: 1;
    color: var(--foreground);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

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

.faq-answer {
    overflow: hidden;
}

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

.faq-answer__inner {
    padding: 4px 24px 24px;
    font-size: 17px;
    line-height: 1.6;
    color: #7B8BAD;
}

.faq-answer__inner p {
    color: #7B8BAD;
    max-width: none;
}

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

.faq-answer__inner ol,
.faq-answer__inner ul {
    padding-left: 20px;
    margin-top: 8px;
}

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

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

.faq-answer__inner li {
    margin-bottom: 4px;
}

/* ============================================
   PAYMENT LOGO ROW
   Horizontal strip of payment method logos
   ============================================ */

.payment-logo-row {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

@media (min-width: 1024px) {
    .payment-logo-row {
        padding: 40px 0;
    }
}

.payment-logo-row__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .payment-logo-row__inner {
        gap: 16px;
    }
}

.payment-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    min-width: 72px;
    height: 48px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.2s ease, border-color 0.2s ease;
    color: var(--foreground);
}

.payment-logo-item:hover {
    filter: grayscale(0%) brightness(1);
    border-color: rgba(0, 255, 127, 0.3);
}

/* Full-color variant (used on zahlungen.html) */
.payment-logo-row--full-color .payment-logo-item {
    filter: grayscale(0%) brightness(1);
}

.payment-svg {
    width: auto;
    height: 24px;
    max-width: 60px;
    color: var(--foreground);
}

/* ============================================
   GAME CARDS
   Casino game display cards with hover effects
   ============================================ */

.games-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

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

/* Horizontal scroll version for mobile carousels */
.games-carousel--scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    /* Ensure it doesn't break layout */
    max-width: 100%;
}

.games-carousel--scroll::-webkit-scrollbar {
    height: 4px;
}

.games-carousel--scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 2px;
}

.games-carousel--scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.games-carousel--scroll .game-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    min-width: 0;
}

@media (min-width: 480px) {
    .games-carousel--scroll .game-card {
        flex: 0 0 180px;
    }
}

@media (min-width: 768px) {
    .games-carousel--scroll .game-card {
        flex: 0 0 200px;
    }
}

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-width: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 255, 127, 0.15);
    border-color: rgba(0, 255, 127, 0.4);
}

.game-card__img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #111827 0%, #1E2A40 100%);
    position: relative;
}

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

.game-card:hover .game-card__img {
    transform: scale(1.05);
}

.game-card__live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e53e3e;
    color: white;
    font-family: "Nunito Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: live-pulse 1.5s infinite ease-in-out;
}

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

.game-card__body {
    padding: 12px;
}

.game-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card__provider {
    font-size: 12px;
    color: #7B8BAD;
    margin-top: 2px;
}

.game-card__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 26, 0.6);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 10px;
}

.game-card:hover .game-card__play-btn {
    opacity: 1;
}

.game-card__play-inner {
    font-family: "Bebas Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--primary-foreground);
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 6px;
}

/* ============================================
   CATEGORY TABS
   Game category pill tabs with active state
   ============================================ */

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 32px;
}

.category-tabs::-webkit-scrollbar {
    height: 2px;
}

.category-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 1px;
}

.tab-btn {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted-foreground);
    cursor: pointer;
    white-space: nowrap;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: all 0.2s ease;
    min-height: 44px;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--foreground);
}

.tab-btn.is-active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 255, 127, 0.4);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

/* ============================================
   VIP TIER LADDER
   Silver → Gold → VIP tier visualization
   ============================================ */

.vip-tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.vip-tier-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    min-width: 0;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vip-tier-card:hover {
    transform: translateY(-4px);
}

.vip-tier-card--gold {
    border-color: rgba(245, 200, 66, 0.5);
    box-shadow: 0 0 32px rgba(245, 200, 66, 0.1);
}

.vip-tier-card--vip {
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 0 0 40px rgba(0, 255, 127, 0.15);
}

.vip-tier-card--vip::before {
    content: 'EXKLUSIV';
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 0 0 6px 6px;
}

.vip-tier-icon {
    font-size: 48px;
    line-height: 1;
}

.vip-tier-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    letter-spacing: 0.05em;
}

.vip-tier-name--silver { color: #C0C0C0; }
.vip-tier-name--gold { color: var(--accent); }
.vip-tier-name--vip {
    background: linear-gradient(135deg, #F5C842 0%, #00FF7F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-tier-rewards {
    list-style: none;
    text-align: left;
    width: 100%;
    flex: 1;
}

.vip-tier-rewards li {
    padding: 6px 0;
    font-size: 15px;
    /* #8A9BBF on #111827 ≈ 5.3:1 - passes AA */
    color: #8A9BBF;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-tier-rewards li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   PROVIDER GRID
   Software provider logo grid
   ============================================ */

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

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

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

.provider-logo-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.2s ease, border-color 0.2s ease;
}

.provider-logo-item:hover {
    filter: grayscale(0%) brightness(1);
    border-color: rgba(0, 255, 127, 0.3);
}

.provider-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--foreground);
    text-align: center;
}

/* ============================================
   TRUST SIGNALS & BADGES
   License, SSL, verification badges
   ============================================ */

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

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

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 16px 8px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.trust-item__icon {
    font-size: 32px;
    color: var(--accent);
}

.trust-item__label {
    font-size: 13px;
    color: #7B8BAD;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
}

/* Inline trust badge (header/footer) */
.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 42, 64, 0.8);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--accent);
    padding: 4px 8px;
    height: 28px;
}

/* Trust badge row */
.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
}

/* ============================================
   DATA TABLES
   Deposit/withdrawal method tables
   ============================================ */

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    tabindex: 0;
}

/* Ensure scrollable table regions are keyboard-accessible */
.table-wrapper[role="region"] {
    tabindex: 0;
}

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

thead th {
    background: var(--card);
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--accent);
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

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

tbody tr:nth-child(even) {
    background: rgba(17, 24, 39, 0.7);
}

tbody tr:hover {
    background: rgba(0, 255, 127, 0.03);
}

tbody td {
    padding: 14px 20px;
    font-size: 15px;
    color: var(--foreground);
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
    vertical-align: middle;
}

.table-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.table-badge--green {
    background: rgba(0, 255, 127, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.table-badge--gold {
    background: rgba(245, 200, 66, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 200, 66, 0.3);
}

/* ============================================
   CALLOUT / HIGHLIGHT BOXES
   Summary boxes, tips, warnings
   ============================================ */

.callout {
    border-left: 3px solid var(--primary);
    background: rgba(0, 255, 127, 0.05);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout--gold {
    border-left-color: var(--accent);
    background: rgba(245, 200, 66, 0.05);
}

.callout--warning {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.callout__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.callout p {
    font-size: 15px;
    color: #7B8BAD;
    margin: 0;
    max-width: none;
}

/* TL;DR / Summary box */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    max-width: 680px;
    margin: 0 auto;
}

.summary-box__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 16px;
}

.summary-box__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-box__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 17px;
    color: var(--foreground);
}

.summary-box__list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pull quote */
blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(245, 200, 66, 0.04);
    border-radius: 0 8px 8px 0;
}

blockquote p {
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
    max-width: none;
}

blockquote cite {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #7B8BAD;
    font-style: normal;
}

/* ============================================
   CTA SECTION BAND
   Full-width conversion section
   ============================================ */

.cta-section {
    background: var(--background);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-section__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-section__heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 16px;
}

.cta-section__sub {
    font-size: 17px;
    color: #7B8BAD;
    margin: 0 auto 32px;
    max-width: 560px;
}

/* Mascot illustration float */
.cta-mascot {
    display: none;
}

@media (min-width: 1024px) {
    .cta-mascot {
        display: block;
        position: absolute;
        right: max(calc(50% - 640px + 24px), 24px);
        bottom: 0;
        width: 260px;
        pointer-events: none;
    }
}

/* ============================================
   MONEY RAIN PARTICLE EFFECT
   € symbol cascade on CTA click
   ============================================ */

.money-rain-particle {
    position: fixed;
    pointer-events: none;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    color: var(--primary);
    z-index: 9999;
    animation: money-fall 1.2s ease-out forwards;
    user-select: none;
}

@keyframes money-fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-80px) rotate(20deg) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) rotate(-10deg) scale(0.8);
    }
}

/* ============================================
   COIN PARTICLE BACKGROUND
   Subtle coin icons floating in hero areas
   ============================================ */

.coin-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.coin-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #F5C842, #c89c00);
    opacity: 0.08;
    animation: coin-float linear infinite;
}

@keyframes coin-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.08; }
    90% { opacity: 0.08; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ============================================
   PWA CALLOUT
   Mobile app install section
   ============================================ */

.pwa-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .pwa-section {
        grid-template-columns: 1fr 1fr;
    }
}

.pwa-mockup {
    display: flex;
    justify-content: center;
}

.pwa-phone {
    width: 200px;
    max-width: 100%;
}

.pwa-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pwa-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pwa-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 255, 127, 0.15);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.pwa-step__text {
    font-size: 16px;
    color: var(--foreground);
    margin: 0;
    max-width: none;
    padding-top: 4px;
}

/* ============================================
   SEO TEXT SECTION
   Long-form prose content
   ============================================ */

.seo-text {
    max-width: 680px;
    margin: 0 auto;
}

.seo-text h2 {
    margin-bottom: 32px;
}

.seo-text h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--foreground);
}

.seo-text p {
    color: #7B8BAD;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    max-width: none;
}

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

.seo-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.seo-text ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: #7B8BAD;
    font-size: 17px;
}

.seo-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.seo-text .legal-note {
    font-size: 14px;
    color: #7B8BAD;
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 32px;
    max-width: none;
}

/* ============================================
   PROCESS / STEP FLOW
   KYC, registration steps
   ============================================ */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        gap: 0;
    }
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.process-step + .process-step::before {
    content: '';
    display: block;
}

@media (min-width: 768px) {
    .process-step + .process-step::after {
        content: '→';
        position: absolute;
        left: -12px;
        top: 36px;
        color: var(--primary);
        font-size: 20px;
    }
}

.process-step__circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 255, 127, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.process-step__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    color: var(--foreground);
    margin-bottom: 8px;
}

.process-step__desc {
    font-size: 14px;
    color: #7B8BAD;
    max-width: none;
    margin: 0;
}

/* ============================================
   LEADERBOARD / TOURNAMENT
   Rank table and tournament display
   ============================================ */

.leaderboard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.leaderboard__header {
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.1) 0%, rgba(0, 255, 127, 0.05) 100%);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.leaderboard__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
}

.leaderboard__row:last-child {
    border-bottom: none;
}

.leaderboard__rank {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    width: 32px;
    flex-shrink: 0;
}

.leaderboard__rank--1 { color: #FFD700; }
.leaderboard__rank--2 { color: #C0C0C0; }
.leaderboard__rank--3 { color: #CD7F32; }
.leaderboard__rank--other { color: #7B8BAD; }

.leaderboard__name {
    flex: 1;
    font-size: 15px;
    color: var(--foreground);
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
}

.leaderboard__prize {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    color: var(--primary);
}

/* ============================================
   MISSION / WHEEL CARDS
   Daily mission and wheel of fortune blocks
   ============================================ */

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

.feature-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00FF7F, #F5C842);
    border-radius: 12px 12px 0 0;
}

.feature-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 0.03em;
    color: var(--foreground);
    margin-bottom: 12px;
}

.feature-card__body {
    font-size: 16px;
    color: #7B8BAD;
    line-height: 1.6;
}

.feature-card__list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--foreground);
}

.feature-card__list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* Spinning wheel animation */
.wheel-spin-anim {
    animation: wheel-rotate 8s linear infinite;
    transform-origin: center;
}

@keyframes wheel-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   COMPARISON TABLE
   Highlighted "recommended" column
   ============================================ */

.comparison-table thead th.recommended {
    background: rgba(0, 255, 127, 0.1);
    color: var(--primary);
    border-top: 2px solid var(--primary);
}

.comparison-table tbody td.recommended {
    background: rgba(0, 255, 127, 0.04);
    font-weight: 700;
    color: var(--foreground);
}

/* ============================================
   SCROLL ANIMATIONS
   GSAP-compatible + CSS fallback
   ============================================ */

.gsap-reveal,
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stat blocks must never be invisible - override animation for them */
.stat-block.gsap-reveal,
.stat-block.animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Mascot slide-in from sides */
.mascot-from-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mascot-from-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mascot-from-left.is-visible,
.mascot-from-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   ANCHOR / INTERNAL LINK STYLES
   In-content navigation links
   ============================================ */

.text-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.8;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    align-items: center;
}

.link-row a {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.2s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.link-row a:hover {
    background: rgba(0, 255, 127, 0.1);
    border-color: var(--primary);
    opacity: 1;
}

/* Quick-jump anchor pills */
.anchor-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.anchor-pill {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(0, 255, 127, 0.4);
    border-radius: 16px;
    padding: 6px 14px;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.anchor-pill:hover {
    background: rgba(0, 255, 127, 0.1);
    opacity: 1;
}

/* ============================================
   FOOTER
   Three-column footer layout
   ============================================ */

.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo .logo-text {
    font-size: 20px;
}

.footer-tagline {
    font-size: 15px;
    color: #7B8BAD;
    max-width: 280px;
    margin: 0;
}

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

.footer-responsible {
    font-size: 13px;
    color: #7B8BAD;
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
}

.footer-responsible a {
    color: var(--primary);
    text-decoration: underline;
}

.footer-heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 15px;
    color: #7B8BAD;
    text-decoration: none;
    transition: color 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

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

.payment-chip {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #7B8BAD;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px 10px;
    height: 28px;
    display: flex;
    align-items: center;
}

.footer-license {
    font-size: 13px;
    color: #7B8BAD;
    line-height: 1.5;
    margin: 0;
    max-width: none;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copy,
.footer-legal {
    font-size: 13px;
    color: #7B8BAD;
    margin: 0;
    max-width: none;
}

/* ============================================
   PAGE TRANSITION
   Fade-in on load
   ============================================ */

body {
    animation: page-fadein 0.3s ease-out both;
}

@keyframes page-fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   GAMES PAGE - HERO
   ============================================ */

.games-hero {
    background: var(--background);
    min-height: 85svh;
}

.games-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 255, 127, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 65%, rgba(245, 200, 66, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.games-hero__mascot {
    display: none;
    position: absolute;
    bottom: 0;
    right: max(calc(50% - 640px), 0px);
    z-index: 3;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .games-hero__mascot {
        display: block;
    }
}

.games-hero__mascot-img {
    width: 300px;
    height: auto;
    display: block;
}

/* Inline hero stats */
.games-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0 28px;
}

.games-hero__stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.games-hero__stat-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1;
    letter-spacing: 0.03em;
}

.games-hero__stat-label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9AA5BA;
}

.games-hero__stat-divider {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    color: var(--border);
    padding: 0 8px;
    align-self: center;
}

/* Tab intro text */
.games-tab-intro {
    margin-bottom: 20px;
}

.games-tab-intro p {
    color: #7B8BAD;
    font-size: 16px;
    max-width: 680px;
}

/* Crash badge overlay on game cards */
.game-card__crash-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(10, 14, 26, 0.85);
    color: var(--primary);
    font-family: "Bebas Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(0, 255, 127, 0.4);
    z-index: 1;
}

.game-card__jackpot-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(10, 14, 26, 0.85);
    color: var(--accent);
    font-family: "Bebas Neue", sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(245, 200, 66, 0.4);
    z-index: 1;
}

/* Featured games mascot position */
.games-featured-mascot {
    display: none;
    position: absolute;
    right: max(calc(50% - 640px + 24px), 16px);
    top: 40px;
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1280px) {
    .games-featured-mascot {
        display: block;
    }
}

/* Make featured section relatively positioned */
#top-games {
    position: relative;
    overflow: hidden;
}

/* Final CTA background tiles */
.games-cta-bg-tiles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.04;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.games-cta-tile {
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* ============================================
   BONUSES PAGE - HERO
   ============================================ */

.bonuses-hero {
    background: var(--background);
}

.bonuses-hero__bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 255, 127, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(245, 200, 66, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.bonuses-hero__h1 {
    font-size: clamp(36px, 7vw, 68px);
}

.bonuses-hero__stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 28px;
    flex-wrap: wrap;
}

.bonuses-hero__stat-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(56px, 10vw, 96px);
    line-height: 1;
    letter-spacing: 0.02em;
}

.bonuses-hero__stat-plus {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1;
    opacity: 0.7;
}

.bonuses-hero__stat-fs {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1;
    letter-spacing: 0.02em;
}

.bonuses-hero__mascot {
    display: none;
    position: absolute;
    bottom: 0;
    right: max(calc(50% - 640px), 0px);
    z-index: 3;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .bonuses-hero__mascot {
        display: block;
    }
}

/* ============================================
   BONUSES PAGE - HIGHROLLER CARD
   ============================================ */

.bonuses-single-card-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.bonuses-single-card-wrap--narrow {
    max-width: 520px;
}

.bonuses-highroller-card {
    background: var(--card);
    border: 1px solid rgba(245, 200, 66, 0.3);
    border-radius: 12px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(245, 200, 66, 0.08);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.bonuses-highroller-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 48px rgba(245, 200, 66, 0.18);
}

.bonuses-highroller-card .bonus-card__accent-bar {
    background: linear-gradient(90deg, #F5C842 0%, #00FF7F 100%);
}

.bonuses-highroller-card__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .bonuses-highroller-card__inner {
        grid-template-columns: 1fr 1.6fr;
    }
}

.bonuses-highroller-card__left {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
    background: rgba(245, 200, 66, 0.03);
}

@media (min-width: 768px) {
    .bonuses-highroller-card__left {
        border-bottom: none;
        border-right: 1px solid var(--border);
        justify-content: center;
    }
}

.bonuses-highroller-card__icon {
    font-size: 44px;
    line-height: 1;
}

.bonuses-highroller-card__badge {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(245, 200, 66, 0.12);
    border: 1px solid rgba(245, 200, 66, 0.35);
    border-radius: 4px;
    padding: 4px 12px;
}

.bonuses-highroller-card__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1;
    letter-spacing: 0.02em;
}

.bonuses-highroller-card__right {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.bonuses-hr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonuses-hr-list li {
    font-size: 15px;
    color: #7B8BAD;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
}

.bonuses-hr-list li::before {
    content: '▸';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.bonuses-hr-list li strong {
    color: var(--foreground);
    min-width: 140px;
    flex-shrink: 0;
}

.bonuses-hr-note {
    font-size: 12px;
    color: #7B8BAD;
    font-style: italic;
    margin: 0;
    max-width: none;
    opacity: 0.8;
}

/* ============================================
   BONUSES PAGE - VIP HUB SECTION
   ============================================ */

.bonuses-vip-hub-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .bonuses-vip-hub-inner {
        grid-template-columns: 280px 1fr;
        gap: 64px;
    }
}

.bonuses-vip-hub__mascot {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bonuses-vip-hub__mascot img {
    max-width: 240px;
    width: 100%;
}

@media (min-width: 768px) {
    .bonuses-vip-hub__mascot img {
        max-width: 280px;
    }
}

.bonuses-vip-hub__content h2 {
    margin-bottom: 0;
}

.bonuses-vip-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bonuses-vip-perks li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
    font-size: 16px;
    color: #7B8BAD;
    line-height: 1.5;
}

.bonuses-vip-perks li:last-child {
    border-bottom: none;
}

.bonuses-vip-perks li strong {
    color: var(--foreground);
    display: block;
    margin-bottom: 2px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 17px;
    letter-spacing: 0.03em;
}

.bonuses-vip-perks__icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
    margin-top: 2px;
}

/* ============================================
   HOMEPAGE - HERO SPECIFIC
   ============================================ */

.hero--home .hero__canvas-wrap {
    pointer-events: all;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    margin-top: 24px;
}

.hero-trust-item {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #7B8BAD;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hero mascot wrap - bottom-right on desktop, hidden on mobile */
.hero-mascot-wrap {
    position: absolute;
    bottom: 0;
    right: max(calc(50% - 640px), 0px);
    z-index: 3;
    pointer-events: none;
    display: none;
}

@media (min-width: 1024px) {
    .hero-mascot-wrap {
        display: block;
    }
}

.hero-mascot-img {
    width: 280px;
    max-width: none;
    height: auto;
    display: block;
}

/* ============================================
   HOMEPAGE - WELCOME TIERS
   ============================================ */

.welcome-tiers {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .welcome-tiers {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 0;
    }
}

.welcome-tier {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
    .welcome-tier {
        border-radius: 0;
    }
    .welcome-tier:first-of-type {
        border-radius: 12px 0 0 12px;
    }
    .welcome-tier:last-of-type {
        border-radius: 0 12px 12px 0;
    }
}

.welcome-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 255, 127, 0.12);
}

.welcome-tier__step {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7B8BAD;
    background: rgba(0, 255, 127, 0.08);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-radius: 4px;
    padding: 3px 10px;
}

.welcome-tier__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(52px, 8vw, 80px);
    line-height: 1;
}

.welcome-tier__max {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: var(--foreground);
}

.welcome-tier__freespins {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    color: var(--primary);
}

.welcome-tier__connector {
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    color: var(--primary);
    padding: 0 12px;
    flex-shrink: 0;
    opacity: 0.6;
    align-self: center;
    display: none;
}

@media (min-width: 768px) {
    .welcome-tier__connector {
        display: flex;
        align-items: center;
        padding: 0 4px;
        font-size: 28px;
    }
}

.welcome-total {
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.08), rgba(0, 255, 127, 0.08));
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
}

.welcome-total__label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7B8BAD;
    margin-bottom: 8px;
}

.welcome-total__value {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1;
    margin-bottom: 8px;
}

.welcome-total__fine {
    font-size: 13px;
    color: #7B8BAD;
    font-style: italic;
}

/* ============================================
   HOMEPAGE - GAMES SECTION MASCOT
   ============================================ */

.games-mascot-wrap {
    display: none;
    position: absolute;
    right: max(calc(50% - 640px + 24px), 16px);
    top: 0;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 1280px) {
    .games-mascot-wrap {
        display: block;
    }
}

.games-mascot-img {
    width: 220px;
    height: auto;
    opacity: 0.85;
}

/* Make games section relatively positioned for mascot */
#spiele {
    position: relative;
    overflow: hidden;
}

/* game-card link reset */
.game-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* ============================================
   HOMEPAGE - PROVIDERS GRID EXTRAS
   ============================================ */

.provider-logo-item--more {
    background: rgba(0, 255, 127, 0.06);
    border-color: rgba(0, 255, 127, 0.2);
}

.provider-name--more {
    color: var(--primary) !important;
}

/* ============================================
   HOMEPAGE - VIP PROGRESS BAR
   ============================================ */

.vip-progress-bar-wrap {
    margin: 0 auto 40px;
    max-width: 600px;
    display: none;
}

@media (min-width: 768px) {
    .vip-progress-bar-wrap {
        display: block;
    }
}

.vip-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.vip-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C0C0C0 0%, #F5C842 50%, #00FF7F 100%);
    border-radius: 2px;
    transition: width 1.5s ease-out 0.3s;
}

.vip-progress-labels {
    display: flex;
    justify-content: space-between;
    font-family: "Bebas Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.vip-progress-labels span:nth-child(1) { color: #C0C0C0; }
.vip-progress-labels span:nth-child(2) { color: #F5C842; }
.vip-progress-labels span:nth-child(3) { color: #00FF7F; }

/* ============================================
   HOMEPAGE - PWA SECTION EXTRAS
   ============================================ */

.pwa-content {
    display: flex;
    flex-direction: column;
}

.pwa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.pwa-feature-badge {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
}

.pwa-phone-frame {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.pwa-phone-frame::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(0, 255, 127, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================
   HOMEPAGE - PAYMENTS QUICK INFO
   ============================================ */

.payments-quick-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
}

@media (min-width: 768px) {
    .payments-quick-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.payments-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}

.payments-info-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
}

.payments-info-item strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    color: var(--foreground);
}

.payments-info-item span {
    display: block;
    font-size: 13px;
    color: #7B8BAD;
}

/* ============================================
   HOMEPAGE - FINAL CTA SECTION
   ============================================ */

.cta-section--final {
    background: linear-gradient(
        135deg,
        rgba(10, 14, 26, 1) 0%,
        rgba(17, 24, 39, 0.8) 50%,
        rgba(10, 14, 26, 1) 100%
    );
    border-top: 1px solid var(--border);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section--final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 255, 127, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* ============================================
   TRUST GRID - 6 item, 3-col always on desktop
   ============================================ */

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

/* ============================================
   VIP PAGE - HERO
   ============================================ */

.vip-hero {
    background: var(--background);
    min-height: 100svh;
}

.vip-hero__bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(245, 200, 66, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 65%, rgba(0, 255, 127, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.vip-hero__content {
    padding-bottom: 80px;
}

.vip-hero__h1 {
    font-size: clamp(40px, 7vw, 72px);
}

/* Limo stage - sits at bottom-left desktop, hidden on mobile */
.vip-limo-stage {
    position: absolute;
    bottom: 0;
    left: max(calc(50% - 640px), 0px);
    z-index: 3;
    pointer-events: none;
    display: none;
    align-items: flex-end;
    gap: 0;
}

@media (min-width: 1024px) {
    .vip-limo-stage {
        display: flex;
    }
}

.vip-limo {
    flex-shrink: 0;
}

.vip-limo__svg {
    width: 420px;
    height: auto;
    display: block;
}

.vip-mascot-exit {
    position: absolute;
    bottom: 108px;
    left: 280px;
}

.vip-mascot-img {
    width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(245, 200, 66, 0.3));
}

/* ============================================
   VIP PAGE - TOURNAMENT LAYOUT
   ============================================ */

.vip-tournament-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .vip-tournament-layout {
        grid-template-columns: 380px 1fr;
        gap: 56px;
    }
}

.vip-tournament-info h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--foreground);
    margin-bottom: 16px;
}

.vip-tournament-info > p {
    color: #7B8BAD;
    margin-bottom: 24px;
    max-width: none;
}

.vip-tournament-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vip-tournament-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
}

.vip-tournament-feature:last-child {
    border-bottom: none;
}

.vip-tournament-feature__icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
    margin-top: 2px;
}

.vip-tournament-feature strong {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    color: var(--foreground);
    margin-bottom: 2px;
}

.vip-tournament-feature span {
    display: block;
    font-size: 14px;
    color: #7B8BAD;
    line-height: 1.5;
}

/* ============================================
   VIP PAGE - FEATURES GRID
   Daily Missions / Wheel / Bonus Hub
   ============================================ */

.vip-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

/* Wheel icon centering */
.vip-wheel-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

/* ============================================
   VIP PAGE - MID CTA BAND
   ============================================ */

.vip-mid-cta {
    background: linear-gradient(
        135deg,
        rgba(17, 24, 39, 1) 0%,
        rgba(10, 14, 26, 0.95) 100%
    );
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.vip-mid-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(245, 200, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.vip-mid-cta__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.vip-mid-cta__heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 12px;
}

.vip-mid-cta__sub {
    font-size: 17px;
    color: #7B8BAD;
    margin: 0 auto 28px;
    max-width: 560px;
}

/* Gold VIP button */
.vip-gold-btn {
    background: linear-gradient(135deg, #F5C842, #c89c00);
    color: #0A0E1A;
}

.vip-gold-btn:hover {
    box-shadow: 0 0 24px rgba(245, 200, 66, 0.5), 0 4px 16px rgba(245, 200, 66, 0.3);
    color: #0A0E1A;
}

/* ============================================
   ZAHLUNGEN PAGE - HERO
   ============================================ */

.zahlungen-hero {
    background: var(--background);
    min-height: 60svh;
}

.zahlungen-hero__bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(0, 255, 127, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(245, 200, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.zahlungen-hero__h1 {
    font-size: clamp(36px, 6.5vw, 66px);
}

/* Payment logo grid inside hero */
.zahlungen-hero__logos {
    margin: 20px auto 0;
    max-width: 680px;
}

.zahlungen-hero__logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zahlungen-hero__logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    min-width: 64px;
    height: 48px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.zahlungen-hero__logo-item:hover {
    border-color: rgba(0, 255, 127, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.zahlungen-hero__logo-item--crypto {
    background: rgba(255, 255, 255, 0.04);
}

/* ============================================
   ZAHLUNGEN PAGE - MASCOT SPLIT
   ============================================ */

.zahlungen-mascot-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .zahlungen-mascot-split {
        grid-template-columns: 1fr 280px;
        gap: 48px;
    }
}

.zahlungen-mascot-split__text h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--foreground);
    margin-bottom: 16px;
}

.zahlungen-mascot-split__text p {
    color: #7B8BAD;
    max-width: none;
}

.zahlungen-mascot-split__visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.zahlungen-mascot-split__visual img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 127, 0.2));
}

/* ============================================
   ZAHLUNGEN PAGE - CRYPTO EXPLAINER
   ============================================ */

.zahlungen-crypto-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .zahlungen-crypto-layout {
        grid-template-columns: 320px 1fr;
        gap: 64px;
    }
}

.zahlungen-crypto-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
}

.zahlungen-crypto-coin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
    transition: transform 0.2s ease;
}

.zahlungen-crypto-coin:hover {
    transform: translateY(-4px);
}

.zahlungen-crypto-name {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--foreground);
    text-align: center;
}

.zahlungen-crypto-ticker {
    font-family: "Bebas Neue", sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #7B8BAD;
    text-align: center;
}

.zahlungen-crypto-benefits h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--foreground);
    margin-bottom: 24px;
}

.zahlungen-crypto-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.zahlungen-crypto-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
    font-size: 15px;
    color: #7B8BAD;
    line-height: 1.5;
}

.zahlungen-crypto-list li:last-child {
    border-bottom: none;
}

.zahlungen-crypto-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.zahlungen-crypto-list li strong {
    color: var(--foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 17px;
    letter-spacing: 0.03em;
    display: block;
}

.zahlungen-crypto-list__icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
    margin-top: 2px;
}

/* ============================================
   ZAHLUNGEN PAGE - SECURITY GRID
   ============================================ */

.zahlungen-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
}

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

.zahlungen-security-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.zahlungen-security-item:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 200, 66, 0.3);
}

.zahlungen-security-icon {
    font-size: 36px;
    line-height: 1;
}

.zahlungen-security-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.zahlungen-security-desc {
    font-size: 13px;
    color: #7B8BAD;
    line-height: 1.5;
    margin: 0;
    max-width: none;
}

/* ============================================
   ZAHLUNGEN PAGE - KYC DOCS GRID
   ============================================ */

.zahlungen-kyc-docs .feature-card {
    min-height: 200px;
}

/* ============================================
   ZAHLUNGEN PAGE - CTA ICON
   ============================================ */

.zahlungen-cta-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* ============================================
   FAQ PAGE - SPECIFIC STYLES
   ============================================ */

/* FAQ Hero */
.faq-hero {
    background: var(--background);
    min-height: 44svh;
    align-items: center;
}

.faq-hero__bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 127, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(245, 200, 66, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-hero__h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 5.5vw, 56px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--primary);
    margin-bottom: 16px;
}

/* FAQ TL;DR Summary Card */
.faq-tldr-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    max-width: 720px;
    margin: 0 auto;
}

.faq-tldr-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
}

.faq-tldr-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(30, 42, 64, 0.5);
    font-size: 16px;
    color: #7B8BAD;
    line-height: 1.5;
}

.faq-tldr-list li:last-child {
    border-bottom: none;
}

.faq-tldr-list li strong {
    display: block;
    color: var(--foreground);
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.faq-tldr-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-tldr-check {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    margin-top: 2px;
}

/* FAQ Trust Interrupt */
.faq-trust-interrupt {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .faq-trust-badges {
        gap: 24px;
    }
}

.faq-trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    padding: 16px 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    min-width: 120px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-trust-badge-item:hover {
    border-color: rgba(245, 200, 66, 0.4);
    transform: translateY(-2px);
}

.faq-trust-badge-icon {
    font-size: 28px;
    line-height: 1;
}

.faq-trust-badge-label {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.faq-trust-badge-sub {
    font-size: 12px;
    color: #7B8BAD;
    line-height: 1.3;
    max-width: 120px;
}

/* FAQ Security Grid */
.faq-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

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

.faq-security-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.faq-security-item:hover {
    border-color: rgba(0, 255, 127, 0.3);
}

.faq-security-icon {
    font-size: 28px;
    line-height: 1;
}

.faq-security-item strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.faq-security-item span {
    font-size: 12px;
    color: #7B8BAD;
    line-height: 1.3;
}

/* FAQ Final CTA */
.faq-final-cta {
    border-top: 1px solid var(--border);
}

.faq-final-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.faq-final-cta__icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
}

.faq-final-cta__heading {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--foreground);
    margin-bottom: 12px;
}

.faq-final-cta__sub {
    font-size: 17px;
    color: #7B8BAD;
    margin: 0 auto 28px;
    max-width: 480px;
}

.faq-final-cta__legal {
    margin-top: 16px;
    font-size: 13px;
    color: #7B8BAD;
    font-style: italic;
    max-width: none;
}

/* ============================================
   ACCESSIBILITY HELPERS
   ============================================ */

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

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

/* ============================================
   MAIN CONTENT OFFSET
   Account for fixed header
   ============================================ */

/* Pages that don't use hero with padding-top override */
.page-offset {
    padding-top: var(--header-height);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }