/* ============================================
   YEP CASINO - DESIGN SYSTEM
   Mobile-first responsive CSS
   Dark theme dominant casino aesthetic
   ============================================ */

/* ============================================
   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.55;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

p {
    margin: 0 0 1em 0;
}

img {
    display: block;
}


/* ============================================
   TYPOGRAPHY SYSTEM
   Space Grotesk for headings
   DM Sans for body text
   ============================================ */
h1 {
    font-size: clamp(1.875rem, 4vw + 0.5rem, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

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

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

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

.text-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

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

.text-small {
    font-size: 14px;
    line-height: 1.45;
}

.text-small a,
.text-muted a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

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

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}


/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

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

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

.section--no-top {
    padding-top: 0;
}

.section--no-bottom {
    padding-bottom: 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
    .section-title {
        margin-bottom: var(--space-2xl);
    }
}


/* ============================================
   HEADER - Fixed sticky navigation
   Height: 64px mobile, 72px desktop
   z-index: 1000
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.dark .site-header {
    background-color: rgba(15, 14, 23, 0.95);
}

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

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

/* Logo */
.header-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: var(--letter-tight);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-md);
}

/* Header action buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-actions .header-btn-login,
.header-actions .header-btn-register {
    display: none;
}

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

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

/* 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-color: var(--background);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dark .main-nav {
        background-color: #0F0E17;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-md) 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: var(--space-md);
        font-size: 17px;
        border-bottom: 1px solid var(--border);
    }

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

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

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

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

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

    .header-actions .header-btn-login,
    .header-actions .header-btn-register {
        display: inline-flex;
    }
}

/* Body offset for fixed header */
main {
    padding-top: var(--header-height);
}


/* ============================================
   BUTTONS - Primary, Outline, Sizes, Glow
   .btn - base button
   .btn-primary - gradient pink-to-gold
   .btn-outline - transparent with border
   .btn-sm / .btn-lg - sizes
   .btn-glow - pulsing glow animation
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    min-height: 48px;
    padding: 12px 24px;
    white-space: nowrap;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(244, 54, 133, 0.35);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(244, 54, 133, 0.05);
}

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

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

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(244, 54, 133, 0.3), 0 0 16px rgba(244, 54, 133, 0.15);
    }
    50% {
        box-shadow: 0 0 16px rgba(244, 54, 133, 0.5), 0 0 32px rgba(244, 54, 133, 0.25);
    }
}

.btn-block {
    width: 100%;
}


/* ============================================
   HERO SECTIONS
   .hero - full-bleed dark hero with animated bg
   .hero-subdued - muted hero for technical pages
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-3xl) 0;
    background: var(--gradient-bg-animated);
    background-size: 600% 600%;
    animation: heroGradient 12s ease infinite;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

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

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .hero__inner {
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: var(--space-4xl) 0;
        min-height: 60vh;
    }

    .hero__inner {
        text-align: left;
    }
}

.hero__mascot {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 320px;
    height: auto;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero__mascot {
        opacity: 0.9;
        width: 380px;
        right: 0;
    }
}

.hero h1 {
    color: #F5F0EB;
    margin-bottom: var(--space-md);
}

.hero h1 .hero__highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 16px;
    line-height: 1.55;
    color: #9B97AE;
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

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

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

@media (min-width: 1024px) {
    .hero__stats {
        justify-content: flex-start;
        gap: var(--space-xl);
    }
}

.hero__stat {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: #F5F0EB;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__stat-icon {
    color: var(--accent);
    font-size: 18px;
}

/* Subdued hero for technical pages */
.hero-subdued {
    padding: var(--space-3xl) 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
}

.hero-subdued__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.hero-subdued h1 {
    margin-bottom: var(--space-md);
}

.hero-subdued__subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto;
}


/* ============================================
   GAME CARD GRID
   .game-grid - responsive grid container
   .game-card - individual clickable game card
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--card-gap);
}

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

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

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

.game-card {
    display: block;
    background-color: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--card-foreground);
    position: relative;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    border: 1px solid transparent;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(244, 54, 133, 0.15);
    border-color: rgba(244, 54, 133, 0.3);
    color: var(--card-foreground);
}

.game-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    line-height: 1.2;
}

.game-card__image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--input);
}

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

.game-card:hover .game-card__image-wrap img {
    transform: scale(1.05);
}

.game-card__info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.game-card__title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--card-foreground);
}

@media (min-width: 1024px) {
    .game-card__title {
        font-size: 16px;
    }
}

.game-card__provider {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .game-card__provider {
        font-size: 14px;
    }
}


/* ============================================
   BONUS STEP CARDS
   .bonus-steps - horizontal scroll / row container
   .bonus-step-card - individual step card
   ============================================ */
.bonus-steps {
    display: flex;
    gap: var(--card-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
}

.bonus-steps::-webkit-scrollbar {
    height: 4px;
}

.bonus-steps::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 2px;
}

.bonus-steps::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 2px;
}

.bonus-step-card {
    flex: 0 0 85%;
    min-width: 260px;
    max-width: 400px;
    background-color: var(--card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border-top: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    border-image-slice: 1;
    scroll-snap-align: start;
    position: relative;
}

@media (min-width: 768px) {
    .bonus-steps {
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .bonus-step-card {
        flex: 1 1 0;
        max-width: none;
    }
}

.bonus-step-card__number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.bonus-step-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

@media (min-width: 1024px) {
    .bonus-step-card__title {
        font-size: 24px;
    }
}

.bonus-step-card__details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.bonus-step-card__details li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.45;
}

@media (min-width: 1024px) {
    .bonus-step-card__details li {
        font-size: 16px;
    }
}

.bonus-step-card__details strong {
    color: var(--foreground);
    font-weight: 500;
}


/* ============================================
   CTA BANNER - Full-width conversion section
   .cta-banner - animated gradient background
   ============================================ */
.cta-banner {
    padding: var(--section-padding) 0;
    background: linear-gradient(270deg, #1a0a2e, #120c24, #0a1628, #1a0a2e);
    background-size: 600% 600%;
    animation: heroGradient 12s ease infinite;
    text-align: center;
}

.cta-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .cta-banner__inner {
        padding: 0 var(--space-lg);
    }
}

.cta-banner__headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
    color: #F5F0EB;
    letter-spacing: var(--letter-tight);
    margin-bottom: var(--space-md);
}

.cta-banner__subtext {
    font-family: var(--font-body);
    font-size: 16px;
    color: #9B97AE;
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto var(--space-lg) auto;
}

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

.cta-banner__microcopy {
    font-size: 13px;
    color: #6B6780;
    margin-top: var(--space-md);
}


/* ============================================
   FAQ ACCORDION
   .faq-accordion - container for all items
   .faq-item - single expandable Q&A
   ============================================ */
.faq-accordion {
    background-color: var(--card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

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

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

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md) 0;
    min-height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .faq-item__question {
        font-size: 18px;
        padding: 20px 0;
    }
}

.faq-item__question:hover {
    color: var(--primary);
}

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

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

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
    padding-bottom: var(--space-md);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .faq-item__answer-inner {
        font-size: 17px;
    }
}

.faq-item__answer-inner p {
    margin-bottom: 0.75em;
}

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

.faq-item__answer-inner a {
    color: var(--primary);
    text-decoration: underline;
}


/* ============================================
   PROVIDER LOGO ROW
   .provider-row - scrollable logo row
   ============================================ */
.provider-row {
    text-align: center;
}

.provider-row__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

@media (min-width: 1024px) {
    .provider-row__title {
        font-size: 24px;
    }
}

.provider-row__scroll {
    display: flex;
    gap: var(--card-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
}

.provider-row__scroll::-webkit-scrollbar {
    height: 4px;
}

.provider-row__scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 2px;
}

.provider-row__scroll::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .provider-row__scroll {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        scroll-snap-type: none;
    }
}

.provider-row__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: var(--space-md);
    min-width: 120px;
    min-height: 60px;
    scroll-snap-align: start;
    transition: border-color 0.2s ease;
}

.provider-row__item:hover {
    border-color: var(--primary);
}

.provider-row__item img {
    height: 32px;
    width: auto;
    max-width: 100px;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.2s ease;
}

@media (min-width: 1024px) {
    .provider-row__item img {
        height: 40px;
        max-width: 120px;
    }
}

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


/* ============================================
   INFO TABLE - Desktop table / Mobile cards
   .info-table-wrap - container
   .info-table - desktop <table>
   .info-table-card - mobile stacked card
   ============================================ */
.info-table-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
}

.info-table__caption {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

/* Desktop table */
.info-table-desktop {
    display: none;
}

@media (min-width: 768px) {
    .info-table-desktop {
        display: block;
        overflow-x: auto;
    }
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--card-radius);
    overflow: hidden;
    background-color: var(--card);
}

.info-table thead th {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-align: left;
    padding: 16px;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .info-table thead th {
        font-size: 16px;
    }
}

.info-table tbody td {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .info-table tbody td {
        font-size: 16px;
        padding: 16px;
    }
}

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

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

.info-table__row--highlight {
    border-left: 3px solid var(--primary);
}

/* Mobile stacked cards */
.info-table-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .info-table-mobile {
        display: none;
    }
}

.info-table-card {
    background-color: var(--card);
    border-radius: var(--card-radius);
    padding: var(--space-md);
    border: 1px solid var(--border);
}

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

.info-table-card__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    gap: var(--space-md);
}

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

.info-table-card__label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    white-space: nowrap;
}

.info-table-card__value {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    text-align: right;
}


/* ============================================
   ENGAGEMENT PATTERNS
   Summary box, callout, stat highlight,
   pull quote, details/summary
   ============================================ */

/* TL;DR / Summary box */
.summary-box {
    background-color: var(--card);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    padding: var(--card-padding);
    margin-bottom: var(--space-lg);
}

.summary-box__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.summary-box p,
.summary-box ul {
    font-size: 15px;
    color: var(--foreground);
    margin-bottom: 0.5em;
}

.summary-box ul {
    padding-left: 1.25em;
    list-style: disc;
}

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

/* Callout / highlight box */
.callout {
    background: linear-gradient(135deg, rgba(244, 54, 133, 0.08), rgba(245, 200, 66, 0.05));
    border: 1px solid rgba(244, 54, 133, 0.2);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    margin: var(--space-lg) 0;
}

.callout--tip {
    border-color: rgba(245, 200, 66, 0.3);
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.08), rgba(244, 54, 133, 0.03));
}

.callout--warning {
    border-color: rgba(244, 63, 94, 0.3);
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.08), rgba(244, 54, 133, 0.03));
}

.callout__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.callout p {
    font-size: 15px;
    color: var(--foreground);
}

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

/* Stat highlight */
.stat-highlight {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.stat-highlight__number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

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

.stat-highlight__label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--foreground);
    font-weight: 500;
}

.stat-highlight__source {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
}

/* Pull quote */
.pull-quote {
    border-left: 3px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

.pull-quote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

@media (min-width: 1024px) {
    .pull-quote p {
        font-size: 22px;
    }
}

.pull-quote cite {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Details / Summary accordion (no JS needed) */
details.expandable {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

details.expandable summary {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    padding: var(--space-md);
    cursor: pointer;
    min-height: 48px;
    display: flex;
    align-items: center;
    list-style: none;
}

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

details.expandable summary::after {
    content: '+';
    font-size: 20px;
    margin-left: auto;
    color: var(--muted-foreground);
    transition: transform 0.3s ease;
}

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

details.expandable .details-content {
    padding: 0 var(--space-md) var(--space-md);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--muted-foreground);
}


/* ============================================
   CRO PATTERNS
   Trust badges, comparison table highlights,
   social proof
   ============================================ */

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
}

.hero .trust-badge-item span {
    color: var(--foreground);
}

.hero .trust-badge-item {
    background-color: rgba(26, 24, 37, 0.95);
    color: #F5F0EB;
}

.trust-badge-item__icon {
    font-size: 20px;
}

/* Social proof / review cards */
.social-proof {
    display: flex;
    gap: var(--card-gap);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .social-proof {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
    }
}

.social-proof__card {
    flex: 0 0 280px;
    background-color: var(--card);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    padding: var(--card-padding);
}

.social-proof__score {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.social-proof__source {
    font-size: 14px;
    color: var(--muted-foreground);
}


/* ============================================
   VIP PROGRAM SECTION
   .vip-tiers - tier progression bar
   .vip-perks - feature cards
   ============================================ */
.vip-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.vip-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--card);
    border-radius: 20px;
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vip-tier--active {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(245, 200, 66, 0.2);
}

.vip-tier__icon {
    font-size: 18px;
}

.vip-perks {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--card-gap);
}

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

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

.vip-perk__icon {
    font-size: 32px;
    margin-bottom: var(--space-sm);
}

.vip-perk__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.vip-perk__text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.45;
}


/* ============================================
   PAYMENT & TRUST FOOTER ELEMENTS
   ============================================ */
.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--input);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--muted-foreground);
}


/* ============================================
   SEO CONTENT BLOCK
   .seo-content - long-form content area
   Styles headings, paragraphs, lists, tables
   ============================================ */
.seo-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-padding) var(--space-md);
}

@media (min-width: 768px) {
    .seo-content {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

.seo-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

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

.seo-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.seo-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--foreground);
    margin-bottom: 1em;
    max-width: 75ch;
}

@media (min-width: 1024px) {
    .seo-content p {
        font-size: 17px;
    }
}

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

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

.seo-content ul,
.seo-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
    max-width: 75ch;
}

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

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

.seo-content li {
    font-size: 16px;
    line-height: 1.55;
    color: var(--foreground);
    margin-bottom: 0.4em;
}

@media (min-width: 1024px) {
    .seo-content li {
        font-size: 17px;
    }
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    background-color: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.seo-content thead th {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid var(--primary);
}

@media (min-width: 1024px) {
    .seo-content thead th {
        font-size: 15px;
        padding: 14px 16px;
    }
}

.seo-content tbody td {
    font-size: 14px;
    padding: 10px 12px;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .seo-content tbody td {
        font-size: 15px;
        padding: 12px 16px;
    }
}

.seo-content tbody tr:nth-child(even) {
    background-color: var(--background);
}

.seo-content blockquote {
    border-left: 3px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-style: italic;
}

.seo-content blockquote p {
    color: var(--foreground);
    margin-bottom: 0.5em;
}

.seo-content blockquote cite {
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Inline SEO table wrapper for mobile */
.seo-content .table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: var(--space-lg) 0;
    border-radius: var(--card-radius);
}


/* ============================================
   FOOTER
   .site-footer - full-width dark footer
   .footer-grid - 4-column layout
   ============================================ */
.site-footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-lg) 0;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

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

.footer-brand .footer-logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.55;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 0;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-list a {
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}

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

.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-lg);
    text-align: center;
}

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

.footer-disclaimer {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.45;
}


/* ============================================
   ANIMATIONS - Scroll reveal system
   .animate-on-scroll - hidden by default
   .is-visible - revealed by IntersectionObserver
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: calc(var(--stagger, 0) * 80ms);
}

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

/* Stagger children in grids */
.game-grid .animate-on-scroll {
    transition-delay: calc(var(--stagger, 0) * 60ms);
}


/* ============================================
   RESPONSIBLE GAMBLING PAGE - Subdued styles
   ============================================ */
.rg-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--card-gap);
}

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

.rg-tool-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    text-align: center;
}

.rg-tool-card__icon {
    font-size: 28px;
    margin-bottom: var(--space-sm);
    color: var(--muted-foreground);
}

.rg-tool-card__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.rg-tool-card__text {
    font-size: 13px;
    color: #B0ADC0;
    line-height: 1.45;
}

.rg-help-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    margin-bottom: var(--space-md);
}

.rg-help-card__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.rg-help-card__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.rg-help-card__text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.45;
}

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

.rg-help-card__text a:hover {
    color: var(--accent);
}

.rg-help-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}


/* ============================================
   RESPONSIBLE GAMBLING - Warning signs & licence
   ============================================ */
.rg-warning-signs ul,
.rg-budget-tips ul {
    padding-left: 1.5em;
    list-style: disc;
    max-width: 75ch;
}

.rg-warning-signs li,
.rg-budget-tips li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--foreground);
    margin-bottom: 0.6em;
}

@media (min-width: 1024px) {
    .rg-warning-signs li,
    .rg-budget-tips li {
        font-size: 17px;
    }
}

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

.rg-budget-tips a:hover {
    color: var(--accent);
}

.rg-licence-box {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    margin-top: var(--space-lg);
}

.rg-licence-list {
    padding-left: 1.25em;
    list-style: none;
    margin: var(--space-sm) 0 0 0;
}

.rg-licence-list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.55;
    margin-bottom: 0.4em;
    padding-left: 0.5em;
}

@media (min-width: 1024px) {
    .rg-licence-list li {
        font-size: 16px;
    }
}

.rg-licence-list li strong {
    color: var(--muted-foreground);
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
}

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

.rg-policy-content a:hover {
    color: var(--accent);
}


/* ============================================
   DEPOSIT METHODS GRID (zahlungsmethoden page)
   .payment-methods-grid - categorized logos grid
   ============================================ */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--card-gap);
}

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

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

.payment-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: var(--space-md);
    min-height: 80px;
    text-align: center;
    transition: border-color 0.2s ease;
}

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

.payment-method-card__icon {
    font-size: 28px;
}

.payment-method-card__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--foreground);
}

.payment-category-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
}


/* ============================================
   HOMEPAGE - Bonus No-Deposit Card
   ============================================ */
.bonus-no-deposit {
    margin-top: var(--space-xl);
}

.bonus-no-deposit__inner {
    background: linear-gradient(135deg, rgba(244, 54, 133, 0.1), rgba(245, 200, 66, 0.08));
    border: 1px solid rgba(244, 54, 133, 0.25);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    text-align: center;
    position: relative;
}

.bonus-no-deposit__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    margin-bottom: var(--space-md);
}

.bonus-no-deposit__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.625rem);
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.bonus-no-deposit__text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin-bottom: var(--space-lg);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-no-deposit__text strong {
    color: var(--foreground);
}


/* ============================================
   HOMEPAGE - Payment Grid
   ============================================ */
.homepage-payments__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--card-gap);
}

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

@media (min-width: 768px) {
    .homepage-payments__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .homepage-payments__grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        max-width: none;
    }
}


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

.payment-category-label:first-child {
    margin-top: 0;
}


/* ============================================
   KYC STEPS (zahlungsmethoden page)
   .kyc-steps - numbered vertical steps
   ============================================ */
.kyc-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.kyc-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background-color: var(--card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border: 1px solid var(--border);
}

.kyc-step__number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.kyc-step__content h4 {
    margin-bottom: var(--space-xs);
}

.kyc-step__content p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}


/* ============================================
   FEATURE CARDS - icon + text rows
   .feature-row - horizontal feature grid
   .feature-card - single feature
   ============================================ */
.feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--card-gap);
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
}

.feature-card__icon {
    font-size: 28px;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
}

.feature-card__text {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.4;
}


/* ============================================
   LIVE CASINO - Premium card treatments
   ============================================ */
.live-category-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--card-gap);
}

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

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

.live-category-card {
    display: block;
    background-color: var(--card);
    border-radius: var(--card-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--card-foreground);
    border: 1px solid var(--border);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease;
}

.live-category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(245, 200, 66, 0.1);
    border-color: var(--accent);
    color: var(--card-foreground);
}

.live-category-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--input);
}

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

.live-category-card__info {
    padding: var(--card-padding);
}

.live-category-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.live-category-card__meta {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.4;
}


/* ============================================
   MOBILE LIVE SECTION - Split layout
   ============================================ */
.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

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


/* ============================================
   NO-DEPOSIT / HIGH ROLLER - Special cards
   ============================================ */
.highlight-card {
    background-color: var(--card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border: 1px solid var(--border);
    position: relative;
}

.highlight-card--gold {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(245, 200, 66, 0.1);
}

.highlight-card--primary {
    border-color: var(--primary);
}

.highlight-card__badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.highlight-card__stat {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.highlight-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.highlight-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    list-style: none;
    padding: 0;
}

.highlight-card__list li {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

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


/* ============================================
   WHEEL / TOURNAMENTS - Split cards
   ============================================ */
.dual-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--card-gap);
}

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


/* ============================================
   CATEGORY FILTER PILLS
   .filter-pills - horizontal scrollable tags
   ============================================ */
.filter-pills {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.filter-pills::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-pill:hover,
.filter-pill--active {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
}


/* ============================================
   BONUSES PAGE - No Deposit Detail Card
   ============================================ */
.no-deposit-detail__card {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    background: linear-gradient(135deg, rgba(244, 54, 133, 0.1), rgba(245, 200, 66, 0.08));
    border: 1px solid rgba(244, 54, 133, 0.25);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
}

@media (min-width: 768px) {
    .no-deposit-detail__card {
        flex-direction: row;
        align-items: center;
    }
}

.no-deposit-detail__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .no-deposit-detail__left {
        min-width: 200px;
        padding-right: var(--space-xl);
        border-right: 1px solid var(--border);
    }
}

.no-deposit-detail__stat {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.no-deposit-detail__label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    font-weight: 500;
}

.no-deposit-detail__right {
    flex: 1;
}

.no-deposit-detail__right .highlight-card__list li {
    font-size: 15px;
}

@media (min-width: 1024px) {
    .no-deposit-detail__right .highlight-card__list li {
        font-size: 16px;
    }
}

.no-deposit-steps {
    margin-top: var(--space-xl);
}

/* Bonuses hero red/purple tint */
.hero--bonuses {
    background: linear-gradient(270deg, #2a0a1e, #1a0a2e, #120c24, #2a0a1e);
    background-size: 600% 600%;
    animation: heroGradient 12s ease infinite;
}


/* ============================================
   GAMES PAGE - Hero variant & special sections
   ============================================ */
.hero--games {
    background: linear-gradient(270deg, #1a0a2e, #0c1a2e, #120c24, #1a0a2e);
    background-size: 600% 600%;
    animation: heroGradient 12s ease infinite;
}

.games-hero__pills {
    margin-top: var(--space-lg);
}

@media (min-width: 1024px) {
    .games-hero__pills {
        margin-top: var(--space-xl);
    }

    .games-hero__pills .filter-pills {
        justify-content: flex-start;
    }
}

/* Crash Game card accent (electric blue) */
.game-card--crash {
    border-color: rgba(30, 58, 138, 0.3);
}

.game-card--crash:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.game-card__badge--crash {
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
}

/* I'm Feeling Lucky section */
.feeling-lucky__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.08), rgba(244, 54, 133, 0.06));
    border: 1px solid rgba(245, 200, 66, 0.2);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    text-align: center;
}

@media (min-width: 768px) {
    .feeling-lucky__inner {
        flex-direction: row;
        text-align: left;
        padding: var(--space-xl) var(--card-padding);
    }
}

.feeling-lucky__icon {
    font-size: 48px;
    flex-shrink: 0;
}

.feeling-lucky__content {
    flex: 1;
}

.feeling-lucky__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.625rem);
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.feeling-lucky__text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin-bottom: 0;
}

.feeling-lucky__btn {
    flex-shrink: 0;
    white-space: nowrap;
}


/* ============================================
   ZAHLUNGSMETHODEN PAGE - Hero variant & crypto
   ============================================ */
.hero--zahlungen {
    background: linear-gradient(270deg, #0a1628, #1a0a2e, #0c1a28, #0a1628);
    background-size: 600% 600%;
    animation: heroGradient 12s ease infinite;
}

.paysafecard-detail__card {
    background-color: var(--card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border: 1px solid var(--border);
}

.crypto-detail__card {
    background-color: var(--card);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border: 1px solid var(--border);
}

.payment-method-card--crypto {
    border-color: rgba(59, 130, 246, 0.2);
}

.payment-method-card--crypto:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}


/* ============================================
   PLAY-NOW PAGE - Minimal redirect
   ============================================ */
.redirect-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #0F0E17;
    color: #F5F0EB;
    text-align: center;
    padding: var(--space-lg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.redirect-page__logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: var(--space-md);
}

.redirect-page__brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: var(--letter-tight);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xl);
}

.redirect-page__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: #F5F0EB;
    margin-bottom: var(--space-sm);
}

.redirect-page__text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #9B97AE;
    margin-bottom: var(--space-xl);
}

.redirect-loader {
    display: flex;
    gap: 8px;
}

.redirect-loader span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: redirectPulse 1.4s ease-in-out infinite;
}

.redirect-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.redirect-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes redirectPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
--muted-foreground: #A09CB2;
