/* ============================================
   YEP CASINO - Design System
   Cosmic anime-noir aesthetic
   Fonts: Orbitron (display) + Exo 2 (body)
   Mobile-first responsive
   ============================================ */

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

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

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

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

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

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

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

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

section {
    overflow: clip;
}


/* ============================================
   RESET & BASE
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

/* Cosmic background applied to body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(75, 0, 130, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 58, 107, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(120, 0, 80, 0.2) 0%, transparent 50%),
        var(--background);
    pointer-events: none;
}

/* Subtle star particles via pseudo-element */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 55% 20%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 70% 55%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 85% 80%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1.5px 1.5px at 65% 40%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.35), transparent),
        radial-gradient(1px 1px at 78% 72%, rgba(255,255,255,0.45), transparent);
    pointer-events: none;
}

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

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

ul, ol {
    padding-left: 1.25em;
}

::selection {
    background: var(--primary);
    color: var(--primary-foreground);
}


/* ============================================
   TYPOGRAPHY - Orbitron headings, Exo 2 body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--foreground);
    margin: 0 0 0.5em;
    line-height: 1.2;
}

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

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

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

h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.25rem, 1.25rem);
    font-weight: 600;
}

/* Glowing headline effect */
.glow-text {
    text-shadow:
        0 0 10px var(--magenta-glow),
        0 0 30px var(--magenta-glow),
        0 0 60px rgba(230, 25, 122, 0.15);
}

.glow-text-cyan {
    text-shadow:
        0 0 10px var(--cyan-dim),
        0 0 30px var(--cyan-dim);
}

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

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

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

@media (min-width: 1024px) {
    body {
        font-size: 17px;
    }
}


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

.container--narrow {
    max-width: 800px;
}

.section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.section--flush {
    padding-top: 0;
    padding-bottom: 0;
}

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


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

/* Frosted glass only on desktop to avoid containing block trap on mobile */
@media (min-width: 1024px) {
    .site-header {
        -webkit-backdrop-filter: blur(16px) saturate(1.4);
        backdrop-filter: blur(16px) saturate(1.4);
    }
}

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

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

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

.header-logo:hover,
.header-logo:focus-visible {
    color: var(--primary);
}

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

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted-foreground);
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

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

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

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

/* Header CTA buttons (desktop) */
.header-actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

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

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

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

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

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

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

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

    .main-nav.is-open .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .nav-cta-mobile .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

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

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

    .header-actions {
        display: flex;
    }
}


/* ============================================
   BUTTONS - Neon glow CTA system
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
    white-space: nowrap;
    min-height: 48px;
    line-height: 1.2;
}

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

/* Primary CTA - solid neon magenta with pulse */
.btn-primary {
    background: #b01260;
    color: var(--primary-foreground);
    box-shadow: 0 0 8px var(--magenta-glow);
    animation: btn-pulse 1.5s ease-in-out infinite;
}

.btn-primary:hover {
    background: #c9146a;
    transform: translateY(-1px);
    box-shadow: 0 0 16px var(--magenta-glow);
    color: var(--primary-foreground);
}

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

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

/* Gold accent button */
.btn-gold {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 0 8px var(--gold-glow);
}

.btn-gold:hover {
    background: #e8b41a;
    transform: translateY(-1px);
    box-shadow: 0 0 16px var(--gold-glow);
    color: var(--accent-foreground);
}

/* Size variants */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
    min-height: 40px;
}

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

@media (max-width: 479px) {
    .btn-lg,
    .btn-fullmobile {
        width: 100%;
    }
}

/* Pulse animation for primary CTAs */
@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 4px var(--magenta-glow);
    }
    50% {
        box-shadow: 0 0 12px var(--magenta-glow), 0 0 24px rgba(230, 25, 122, 0.15);
    }
}


/* ============================================
   GAME CARDS - Universal card component
   ============================================ */
.gc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

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

/* Horizontally scrollable carousel variant on mobile */
.gc-carousel {
    display: flex;
    gap: var(--grid-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.gc-carousel > .gc {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .gc-carousel {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .gc-carousel > .gc {
        flex: none;
    }
}

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

/* Single card */
.gc {
    position: relative;
    background: var(--card);
    border: 1px solid var(--magenta-dim);
    border-radius: var(--radius);
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    min-width: 0;
}

/* Traveling highlight border animation */
.gc::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary) 30%,
        var(--cyan) 70%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: gc-border-travel 3s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gc:hover::before {
    opacity: 1;
}

@keyframes gc-border-travel {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.gc:hover {
    transform: scale(1.04);
    box-shadow: 0 0 16px var(--magenta-glow);
}

/* Highlighted card */
.gc--highlight {
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--magenta-glow);
}

.gc--gold {
    border-color: rgba(212, 160, 23, 0.3);
}

.gc--gold:hover {
    box-shadow: 0 0 16px var(--gold-glow);
}

/* Badge */
.gc__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 4px;
    z-index: 2;
}

/* Image area */
.gc__image {
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.gc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gc:hover .gc__image img {
    transform: scale(1.05);
}

/* Icon area (when no image) */
.gc__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 8px;
    font-size: 3rem;
    line-height: 1;
}

/* Body */
.gc__body {
    padding: var(--card-padding);
}

.gc__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.gc__provider {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gc__rtp {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(212, 160, 23, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.gc__title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

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

.gc__desc:last-child {
    margin-bottom: 0;
}

.gc__cta {
    width: 100%;
}

/* Large stat number in cards */
.gc__stat {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.gc__stat--gold {
    color: var(--accent);
    text-shadow: 0 0 12px var(--gold-glow);
}

.gc__stat--cyan {
    color: var(--cyan);
    text-shadow: 0 0 12px var(--cyan-dim);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(107, 122, 148, 0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    min-height: 48px;
    list-style: none;
    transition: background 0.2s ease;
}

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

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

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

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.faq-answer p {
    margin: 0 0 12px;
}

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

.faq-answer ul,
.faq-answer ol {
    margin: 8px 0;
}

.faq-answer a {
    color: var(--cyan);
}


/* ============================================
   CTA BANNER - Full-width conversion strip
   ============================================ */
.cta-banner {
    position: relative;
    padding: 40px 16px;
    text-align: center;
    background:
        linear-gradient(135deg, #1a0a2e 0%, #16103a 40%, #0d1b3e 70%, #1a0a2e 100%);
}

.cta-banner__stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 80% 20%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
}

/* Neon line dividers top & bottom */
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--primary), var(--cyan), transparent);
    transition: width 0.8s ease;
}

.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }

.cta-banner.is-visible::before,
.cta-banner.is-visible::after {
    width: 100%;
}

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

.cta-banner__headline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw + 0.25rem, 2rem);
    font-weight: 700;
    color: var(--foreground);
    text-shadow: 0 0 20px var(--magenta-glow);
    margin-bottom: 12px;
}

.cta-banner__text {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__btn {
    min-width: 240px;
}

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


/* ============================================
   BONUS COMPARISON TABLE - Responsive
   ============================================ */
.bonus-table-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cyan-dim);
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.bonus-table__caption {
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyan);
    text-align: left;
    background: rgba(0, 229, 255, 0.05);
    caption-side: top;
}

.bonus-table thead th {
    padding: 12px 16px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cyan);
    text-align: left;
    background: rgba(0, 229, 255, 0.08);
    white-space: nowrap;
    border-bottom: 1px solid var(--cyan-dim);
}

.bonus-table tbody tr {
    border-bottom: 1px solid rgba(107, 122, 148, 0.1);
}

.bonus-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.bonus-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.bonus-table td {
    padding: 12px 16px;
    color: var(--foreground);
    vertical-align: middle;
}

/* Highlighted row */
.bonus-table__highlight {
    border-left: 3px solid var(--primary);
    background: rgba(230, 25, 122, 0.06) !important;
}

/* Mobile: stack rows as cards */
@media (max-width: 767px) {
    .bonus-table thead {
        display: none;
    }

    .bonus-table tbody,
    .bonus-table tr,
    .bonus-table td {
        display: block;
    }

    .bonus-table tr {
        padding: 16px;
        margin-bottom: 8px;
        border-radius: var(--radius-sm);
        border-bottom: none;
    }

    .bonus-table td {
        padding: 4px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .bonus-table td::before {
        content: attr(data-label);
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--cyan);
        text-transform: uppercase;
        flex-shrink: 0;
    }
}


/* ============================================
   STEP GUIDE - Numbered process flow
   ============================================ */
.step-guide {
    max-width: var(--max-width);
    margin: 0 auto;
}

.step-guide__track {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-guide__number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-guide__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    box-shadow: 0 0 12px var(--magenta-glow);
    flex-shrink: 0;
}

.step-guide__line {
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: var(--cyan);
    opacity: 0.4;
    margin-top: 8px;
}

.step-guide__content {
    padding-top: 8px;
    padding-bottom: 8px;
    min-width: 0;
}

.step-guide__icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
    display: block;
}

.step-guide__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
    margin-top: 0;
}

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

/* Desktop: horizontal layout */
@media (min-width: 768px) {
    .step-guide__track {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }

    .step-guide__item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 0 12px;
    }

    .step-guide__number-wrap {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .step-guide__line {
        width: auto;
        height: 2px;
        min-height: auto;
        flex: 1;
        margin-top: 0;
        margin-left: 8px;
        align-self: center;
    }

    .step-guide__number {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}


/* ============================================
   HERO SECTION
   Full-viewport hero with cosmic background
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 32px) 16px 48px;
    text-align: center;
    overflow: clip;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

/* Animated nebula overlay */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(230, 25, 122, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(26, 23, 48, 0.4) 0%, rgba(26, 23, 48, 0.9) 100%);
    animation: nebula-drift 20s ease-in-out infinite alternate;
}

@keyframes nebula-drift {
    0% {
        background-position: 0% 0%, 100% 100%, center;
    }
    100% {
        background-position: 100% 100%, 0% 0%, center;
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero__title {
    margin-bottom: 16px;
    text-shadow:
        0 0 20px var(--magenta-glow),
        0 0 40px rgba(230, 25, 122, 0.15);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    color: var(--cyan);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero__stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 12px var(--cyan-dim);
    display: block;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: block;
    margin-top: 4px;
}

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

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

@media (min-width: 1024px) {
    .hero {
        min-height: 90vh;
        padding-top: calc(var(--header-height) + 64px);
        padding-bottom: 80px;
    }
}


/* ============================================
   SEO CONTENT - Long-form text sections
   ============================================ */
.seo-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.seo-content h2 {
    margin-top: 2em;
    margin-bottom: 0.75em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

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

.seo-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.seo-content p {
    margin-bottom: 1em;
    max-width: 75ch;
}

.seo-content ul,
.seo-content ol {
    margin-bottom: 1em;
}

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

.seo-content a,
p a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.seo-content table {
    width: 100%;
    margin: 1.5em 0;
}

.seo-content blockquote {
    border-left: 3px solid var(--primary);
    margin: 1.5em 0;
    padding: 16px 20px;
    background: var(--card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--foreground);
}

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

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


/* ============================================
   ENGAGEMENT PATTERNS - Callouts, stats, etc.
   ============================================ */

/* TL;DR / Summary box */
.summary-box {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid var(--cyan-dim);
    border-left: 3px solid var(--cyan);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 1.5em 0;
}

.summary-box__title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* Callout / highlight box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 1.5em 0;
}

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

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

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

.callout__title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: 24px 16px;
    margin: 1.5em 0;
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 16px var(--cyan-dim);
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-highlight__label {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 2px;
}

.stat-highlight__source {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--foreground);
    text-align: center;
    padding: 24px;
    margin: 2em 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.pull-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

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

/* Promo code highlight box */
.promo-box {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(22, 16, 58, 0.9));
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    margin: 2em 0;
    box-shadow: 0 0 20px var(--magenta-glow);
}

.promo-box__code {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 16px var(--cyan-dim);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.promo-box__desc {
    color: var(--foreground);
    font-size: 1rem;
    margin-bottom: 16px;
}


/* ============================================
   TRUST / FOOTER
   ============================================ */
.site-footer {
    background:
        linear-gradient(180deg, rgba(17, 14, 31, 0.95) 0%, rgba(10, 8, 20, 1) 100%);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: var(--section-gap);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

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

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

.footer-col {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--foreground);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--foreground);
    margin-bottom: 12px;
}

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

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

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

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

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(107, 122, 148, 0.15);
    border-radius: 4px;
    white-space: nowrap;
}

/* Trust badges */
.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.footer-operator {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 12px;
}

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

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0 0 6px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered delays for grid children */
.gc-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.gc-grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.gc-grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.gc-grid .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.gc-grid .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.gc-grid .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }
.gc-grid .animate-on-scroll:nth-child(7) { transition-delay: 480ms; }
.gc-grid .animate-on-scroll:nth-child(8) { transition-delay: 560ms; }

/* Step guide stagger uses inline --step-delay */
.step-guide__item.animate-on-scroll {
    transition-delay: var(--step-delay, 0ms);
}

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

    .btn-primary {
        animation: none;
    }

    @keyframes nebula-drift {
        0%, 100% {
            background-position: center;
        }
    }

    @keyframes gc-border-travel {
        0%, 100% {
            background-position: 0% 0%;
        }
    }
}


/* ============================================
   FEATURE GRID - "Warum Yep Casino?" section
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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


/* ============================================
   PAYMENT METHODS BAR
   ============================================ */
.payment-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 16px;
    position: relative;
}

.payment-bar::before,
.payment-bar::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
}

.payment-bar::before { top: 0; }
.payment-bar::after { bottom: 0; }

.payment-bar__item {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(107, 122, 148, 0.12);
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.payment-bar__item:hover {
    color: var(--foreground);
    border-color: var(--cyan-dim);
}


/* ============================================
   PROVIDER LOGOS CAROUSEL
   ============================================ */
.provider-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    -webkit-overflow-scrolling: touch;
}

.provider-carousel__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--card);
    border: 1px solid rgba(107, 122, 148, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
    min-width: 140px;
}

.provider-carousel__item:hover {
    color: var(--foreground);
    border-color: var(--cyan-dim);
}


/* ============================================
   INTERLINK HUB SECTION
   ============================================ */
.interlink-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

.interlink-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.interlink-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 12px var(--cyan-dim);
    transform: translateY(-2px);
}

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

.interlink-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 6px;
}

.interlink-card__desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}


/* ============================================
   LEGAL / TECHNICAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 32px) 16px var(--section-gap);
}

.legal-content h1 {
    margin-bottom: 8px;
}

.legal-content .neon-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    margin-bottom: 32px;
}

.legal-content h2 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem);
}

.legal-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-size: clamp(1.0625rem, 1.5vw + 0.25rem, 1.25rem);
}

.legal-content p {
    margin-bottom: 1em;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1em;
    color: var(--muted-foreground);
}

.legal-content li {
    margin-bottom: 0.375em;
}

.legal-content a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 768px) {
    .legal-content {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: calc(var(--header-height) + 48px);
    }
}


/* ============================================
   VIP LEVEL PROGRESSION
   ============================================ */
.vip-levels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vip-level {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--card);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 122, 148, 0.12);
    transition: border-color 0.2s ease;
}

.vip-level:hover {
    border-color: var(--accent);
}

.vip-level__badge {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vip-level__info {
    flex: 1;
    min-width: 0;
}

.vip-level__name {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

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

.vip-level__cashback {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9375rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .vip-levels {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .vip-level {
        flex: 1 1 calc(50% - 6px);
        min-width: 200px;
    }
}

@media (min-width: 1024px) {
    .vip-level {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        text-align: center;
        padding: 20px 12px;
    }
}


/* ============================================
   HIGHROLLER SECTION
   ============================================ */
.highroller-section {
    position: relative;
}

.highroller-box {
    background:
        linear-gradient(135deg, rgba(26, 10, 46, 0.6) 0%, rgba(22, 16, 58, 0.6) 50%, rgba(13, 7, 26, 0.6) 100%);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: var(--radius);
    padding: 48px 24px;
    box-shadow: 0 0 24px var(--gold-glow);
}

@media (max-width: 767px) {
    .highroller-box {
        padding: 32px 16px;
    }

    .highroller-box .gc-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   WHEEL OF FORTUNE VISUAL
   ============================================ */
.wheel-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 16px;
}

.wheel-visual {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary) 0deg 45deg,
        var(--accent) 45deg 90deg,
        var(--cyan) 90deg 135deg,
        var(--primary) 135deg 180deg,
        var(--accent) 180deg 225deg,
        var(--cyan) 225deg 270deg,
        var(--primary) 270deg 315deg,
        var(--accent) 315deg 360deg
    );
    border: 4px solid var(--foreground);
    box-shadow: 0 0 20px var(--magenta-glow), 0 0 40px rgba(0, 229, 255, 0.1);
    animation: wheel-slow-spin 10s linear infinite;
}

@keyframes wheel-slow-spin {
    to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
    .wheel-showcase {
        flex-direction: row;
        padding: 48px 24px;
    }

    .wheel-visual {
        width: 240px;
        height: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wheel-visual {
        animation: none;
    }
}


/* ============================================
   LIVE CASINO - Provider Cards Grid
   ============================================ */
.lc-provider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

.lc-provider-card {
    background: var(--card);
    border: 1px solid var(--cyan-dim);
    border-radius: var(--radius);
    padding: var(--card-padding);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.lc-provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px var(--cyan-dim);
    border-color: var(--cyan);
}

.lc-provider-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.lc-provider-card__logo {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.lc-provider-card__name {
    font-family: var(--font-display);
    font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: var(--foreground);
}

.lc-provider-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.lc-provider-card__features li {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.lc-provider-card__features li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.lc-provider-card__count {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 4px;
}


/* ============================================
   LIVE CASINO - Mobile Text Section
   ============================================ */
.lc-mobile-text {
    flex: 1;
    min-width: 0;
}

.lc-mobile-text h3 {
    margin-top: 0;
}

.lc-mobile-text ul {
    padding-left: 0;
    list-style: none;
    margin: 16px 0;
}

.lc-mobile-text li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.lc-mobile-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}


/* ============================================
   LIVE CASINO - VIP Section
   ============================================ */
.lc-vip-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(26, 10, 46, 0.5) 0%, rgba(22, 16, 58, 0.5) 50%, rgba(13, 7, 26, 0.5) 100%);
}


/* ============================================
   CRASH GAMES SPOTLIGHT - Darker nebula bg
   ============================================ */
.slots-crash-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(13, 7, 26, 0.8) 0%, rgba(10, 15, 40, 0.9) 50%, rgba(13, 7, 26, 0.8) 100%);
}

.slots-crash-section .gc {
    border-color: var(--cyan-dim);
    box-shadow: 0 0 8px var(--cyan-dim);
}

.slots-crash-section .gc:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}


/* ============================================
   CATEGORY FILTER TABS
   ============================================ */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px;
}

.category-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.category-tab:hover,
.category-tab.active {
    color: var(--foreground);
    border-color: var(--primary);
    background: rgba(230, 25, 122, 0.08);
}

.category-tab.active {
    box-shadow: 0 0 8px var(--magenta-glow);
}


/* ============================================
   MOBILE LIVE CASINO DEVICE MOCKUP
   ============================================ */
.device-mockup-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.device-mockup {
    width: 220px;
    height: 400px;
    border: 3px solid var(--foreground);
    border-radius: 24px;
    background: var(--card-solid);
    position: relative;
    box-shadow: 0 0 20px var(--cyan-dim);
    overflow: hidden;
    flex-shrink: 0;
}

.device-mockup__screen {
    position: absolute;
    inset: 12px;
    border-radius: 16px;
    overflow: hidden;
}

.device-mockup__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .device-mockup-section {
        flex-direction: row;
    }
}


/* ============================================
   PROMO INSTRUCTIONS - 3-column grid
   ============================================ */
.promo-instructions {
    margin-top: 32px;
}

.promo-instructions__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

.promo-instruction-item {
    background: var(--card);
    border: 1px solid rgba(107, 122, 148, 0.15);
    border-radius: var(--radius-sm);
    padding: var(--card-padding);
    text-align: center;
}

.promo-instruction-item__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.promo-instruction-item__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--foreground);
}

.promo-instruction-item__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}


/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

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

.breadcrumb a:hover {
    color: var(--cyan);
}

.breadcrumb__sep {
    color: var(--muted);
}


/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

/* Ensure main content starts below fixed header */
#main-content {
    padding-top: var(--header-height);
}

/* Pages with hero that handles own padding */
.page-has-hero #main-content {
    padding-top: 0;
}

#main-content > .page-has-hero {
    margin-top: calc(-1 * var(--header-height));
}