/*
 * Yep Casino - Design System
 * Dark premium cinematic aesthetic
 * Mobile-first responsive design
 * Fonts: Space Grotesk (headings) + DM Sans (body)
 */

/* ============================================
   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: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    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;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--foreground);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Space Grotesk for headings, DM Sans for body
   ============================================ */
h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
}

h3 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
}

h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }
}

.body-text,
.seo-content p,
.seo-content li {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .body-text,
    .seo-content p,
    .seo-content li {
        font-size: 17px;
    }
}

/* Golden gradient text utility */
.text-gold {
    background: linear-gradient(135deg, #D4A43A 0%, #F0D078 50%, #D4A43A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Oversized stat numbers */
.stat-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4A43A 0%, #F0D078 50%, #D4A43A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 64px;
    }
}

/* Micro labels */
.micro-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   LAYOUT & CONTAINER
   Max-width 1180px with responsive padding
   ============================================ */
.container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

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

/* Section spacing */
.section {
    padding-top: 56px;
    padding-bottom: 56px;
}

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

.section-title {
    margin-bottom: 32px;
    text-align: center;
}

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

/* ============================================
   HEADER - Fixed sticky with blur
   z-index: 1000 for header, 1001 for toggle, 999 for nav
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(12, 14, 26, 0.92);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

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

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

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

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

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

.logo-text {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

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

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

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted-foreground);
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--foreground);
    background: var(--muted);
}

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

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

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

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

/* ============================================
   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: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

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

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

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

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

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

/* ============================================
   MOBILE NAV DRAWER
   position: fixed, full-screen below header
   ============================================ */
@media (max-width: 1023px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: var(--background);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 24px 16px 32px;
    }

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

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

    .nav-link {
        min-height: 48px;
        padding: 12px 16px;
        font-size: 17px;
        border-radius: 12px;
    }

    .nav-actions-mobile {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border);
    }

    .nav-actions-mobile .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BUTTONS
   .btn - base, .btn-primary, .btn-ghost, .btn-lg
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 24px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #D4A43A 0%, #C8962E 100%);
    color: var(--primary-foreground);
    box-shadow: 0 4px 16px rgba(212, 164, 58, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E0B44A 0%, #D4A43A 100%);
    color: var(--primary-foreground);
    box-shadow: 0 6px 24px rgba(212, 164, 58, 0.4);
    transform: translateY(-1px);
}

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

.btn-ghost:hover {
    background: var(--muted);
    color: var(--foreground);
    border-color: var(--muted-foreground);
}

.btn-lg {
    min-height: 48px;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .btn-lg {
        padding: 16px 40px;
        font-size: 17px;
    }
}

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

/* Pulsing gold glow animation for CTAs */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(212, 164, 58, 0.25);
    }
    50% {
        box-shadow: 0 6px 32px rgba(212, 164, 58, 0.5);
    }
}

.btn-primary.btn-pulse:hover,
.cta-banner-btn:hover {
    animation: pulseGlow 1.5s ease-in-out infinite;
}

/* ============================================
   GAME CARDS - Slot/game display component
   .game-card in responsive grid
   ============================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.game-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 164, 58, 0.15);
}

.game-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--muted);
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

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

.game-card:hover .game-card-image {
    box-shadow: inset 0 0 0 2px var(--primary);
}

.game-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    z-index: 2;
}

/* FIX: Contrast ratio for accent badge - darken background */
.badge-accent {
    background: #c41a28;
    color: #fff;
}

.badge-gold {
    background: var(--primary);
    color: var(--primary-foreground);
}

.game-card-rtp {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 600;
    background: rgba(12, 14, 26, 0.8);
    color: var(--primary);
    border-radius: 6px;
    z-index: 2;
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 14, 26, 0.6);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-play {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.game-card-content {
    padding: 16px;
}

@media (min-width: 1024px) {
    .game-card-content {
        padding: 20px;
    }
}

.game-card-title {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 4px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .game-card-title {
        font-size: 17px;
    }
}

.game-card-provider {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 768px) {
    .game-card-provider {
        font-size: 14px;
    }
}

/* ============================================
   CTA BANNER - Full-width conversion section
   ============================================ */
.cta-banner {
    position: relative;
    padding: 56px 0;
    text-align: center;
    background: var(--background);
}

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

.cta-banner-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-slash {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(135deg, rgba(212, 164, 58, 0.08) 0%, rgba(212, 164, 58, 0.02) 100%);
    transform: rotate(-15deg);
    animation: slashSlideIn 0.6s ease-out both;
}

@keyframes slashSlideIn {
    from { transform: translateX(-100%) rotate(-15deg); }
    to { transform: translateX(0) rotate(-15deg); }
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 164, 58, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-headline {
    margin-bottom: 16px;
    font-size: 26px;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .cta-banner-headline {
        font-size: 36px;
    }
}

.cta-banner-subtext {
    margin: 0 0 24px;
    font-size: 16px;
    color: var(--muted-foreground);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-banner-subtext {
        font-size: 17px;
    }
}

.cta-banner-btn {
    margin-bottom: 16px;
}

.cta-banner-micro {
    margin: 0;
    font-size: 13px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .cta-banner-micro {
        font-size: 14px;
    }
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   ============================================ */
.faq-section {
    padding: 56px 0;
}

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

.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

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

.faq-item.is-active {
    border-left: 3px solid var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 48px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 17px;
        padding: 20px 24px;
    }
}

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

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

.faq-item.is-active .faq-chevron {
    transform: rotate(180deg);
}

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

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

@media (min-width: 768px) {
    .faq-answer-inner {
        padding: 0 24px 24px;
        font-size: 17px;
    }
}

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

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

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

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges-section {
    padding: 32px 0;
    background: rgba(22, 24, 41, 0.5);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-badges-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.trust-badges-inner::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .trust-badges-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        overflow-x: visible;
    }
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    flex-shrink: 0;
    text-align: center;
}

.trust-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.trust-badge-stat {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4A43A, #F0D078);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge-label {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .trust-badge-label {
        font-size: 14px;
    }
}

.trust-badge-sublabel {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    color: var(--muted-foreground);
}

.badge-18-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   BONUS CARDS - Promotional offer cards
   ============================================ */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

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

.bonus-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 164, 58, 0.15);
}

.bonus-card-accent {
    height: 4px;
    background: linear-gradient(90deg, #D4A43A 0%, #F0D078 50%, #D4A43A 100%);
}

.bonus-card-inner {
    padding: 20px;
}

@media (min-width: 1024px) {
    .bonus-card-inner {
        padding: 32px;
    }
}

/* FIX: Contrast ratio for bonus card badge - darken background */
.bonus-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #c41a28;
    color: #fff;
    border-radius: 6px;
}

.bonus-card-tag {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 164, 58, 0.12);
    border-radius: 20px;
}

.bonus-card-amount {
    font-family: "Space Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4A43A 0%, #F0D078 50%, #D4A43A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .bonus-card-amount {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .bonus-card-amount {
        font-size: 56px;
    }
}

.bonus-card-title {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bonus-card-desc {
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 0 0 16px;
    line-height: 1.6;
}

.bonus-card-terms {
    margin-bottom: 20px;
}

.bonus-card-term {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-card-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   COMPARISON TABLE - Structured data tables
   Desktop table + mobile stacked cards
   ============================================ */
.comparison-section {
    padding: 56px 0;
}

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

.table-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .table-wrapper {
        display: block;
        overflow-x: auto;
        border-radius: 12px;
        border: 1px solid var(--border);
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
}

.comparison-table thead th {
    padding: 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    background: rgba(42, 45, 66, 0.5);
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .comparison-table thead th {
        font-size: 14px;
    }
}

.comparison-table tbody td {
    padding: 16px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

@media (min-width: 768px) {
    .comparison-table tbody td {
        font-size: 16px;
    }
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(42, 45, 66, 0.15);
}

.comparison-table .row-highlighted {
    border-left: 3px solid var(--primary);
    background: rgba(212, 164, 58, 0.06);
}

.comparison-table .row-highlighted td:first-child {
    padding-left: 13px;
}

.table-check {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.table-x {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

/* Mobile stacked cards for comparison */
.comparison-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.comparison-card.card-highlighted {
    border-left: 3px solid var(--primary);
    background: rgba(212, 164, 58, 0.06);
}

.comparison-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-card-row:last-child {
    border-bottom: none;
}

.comparison-card-label {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.comparison-card-value {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
    text-align: right;
}

.comparison-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   HERO SECTIONS
   Full-bleed with cinematic atmosphere
   ============================================ */
.hero {
    position: relative;
    padding: 100px 0 56px;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: var(--background);
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 520px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 140px 0 96px;
        min-height: 600px;
    }
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(12, 14, 26, 1) 0%,
        rgba(22, 24, 41, 0.9) 40%,
        rgba(30, 48, 96, 0.3) 70%,
        rgba(12, 14, 26, 1) 100%);
    animation: heroGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradient {
    0% { opacity: 1; }
    50% { opacity: 0.85; }
    100% { opacity: 1; }
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 164, 58, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    max-width: 560px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-stat {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.hero-stat-sep {
    color: var(--muted-foreground);
}

/* ============================================
   SEO CONTENT BLOCK - Long-form text sections
   Clean reading experience with DM Sans
   ============================================ */
.seo-content {
    padding: 56px 0;
}

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

.seo-content .container {
    max-width: 860px;
}

.seo-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 24px;
}

.seo-content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 20px;
}

@media (min-width: 1024px) {
    .seo-content h2 {
        font-size: 30px;
    }
    .seo-content h3 {
        font-size: 24px;
    }
}

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

.seo-content p {
    margin: 0 0 16px;
    color: var(--foreground);
    opacity: 0.9;
}

.seo-content ul,
.seo-content ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

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

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

.seo-content li {
    margin-bottom: 8px;
    color: var(--foreground);
    opacity: 0.9;
}

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

.seo-content a:hover {
    text-decoration-thickness: 2px;
}

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

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

/* Inline tables in SEO content */
.seo-content .table-wrapper {
    margin: 24px 0;
    display: block;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.seo-content th,
.seo-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.seo-content th {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    background: rgba(42, 45, 66, 0.5);
}

.seo-content tr:last-child td {
    border-bottom: none;
}

/* ============================================
   ENGAGEMENT PATTERNS
   Summary boxes, callouts, stat highlights,
   pull quotes, details/summary
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    padding: 24px;
    margin: 24px 0;
    background: var(--card);
    border: 1px solid var(--primary);
    border-radius: 12px;
    position: relative;
}

.summary-box::before {
    content: 'Zusammenfassung';
    position: absolute;
    top: -10px;
    left: 16px;
    padding: 2px 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Callout / highlight box */
.callout-box {
    padding: 20px 24px;
    margin: 24px 0;
    background: var(--card);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
}

.callout-box.callout-info {
    border-left-color: var(--secondary);
}

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

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

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

.stat-highlight .stat-number {
    display: block;
    margin-bottom: 8px;
}

.stat-highlight .stat-label {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
}

.stat-highlight .stat-source {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* Pull quote */
.pull-quote {
    margin: 32px 0;
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pull-quote blockquote {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-style: normal;
}

@media (min-width: 768px) {
    .pull-quote blockquote {
        font-size: 26px;
    }
}

.pull-quote cite {
    display: block;
    margin-top: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Details/Summary */
details {
    margin: 16px 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

details summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    min-height: 48px;
    list-style: none;
}

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

details summary::after {
    content: '+';
    margin-left: auto;
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

details > div,
details > p {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* ============================================
   PROVIDER LOGOS - Scrollable row
   ============================================ */
.provider-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0;
}

.provider-logos::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .provider-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        overflow-x: visible;
    }
}

.provider-logo {
    flex-shrink: 0;
    height: 40px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

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

/* ============================================
   PAYMENT LOGOS - Footer and sections
   ============================================ */
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--muted);
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
}

/* ============================================
   VIP TIERS - Horizontal progression
   ============================================ */
.vip-tiers {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 0;
}

.vip-tiers::-webkit-scrollbar {
    display: none;
}

.vip-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    flex-shrink: 0;
    text-align: center;
}

.vip-tier-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vip-tier.active .vip-tier-icon {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(212, 164, 58, 0.4);
}

.vip-tier-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.vip-tier.active .vip-tier-name {
    color: var(--primary);
}

.vip-tier-connector {
    width: 24px;
    height: 2px;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================
   CATEGORY TABS - Slot categories, game tabs
   ============================================ */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 16px;
}

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

.category-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.category-tab:hover,
.category-tab.active {
    color: var(--primary-foreground);
    background: var(--primary);
    border-color: var(--primary);
}

/* ============================================
   FEATURES LIST - Icon-based feature rows
   ============================================ */
.features-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(212, 164, 58, 0.1);
    border-radius: 12px;
    color: var(--primary);
}

.feature-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: rgba(12, 14, 26, 0.95);
    border-top: 1px solid var(--border);
    padding-top: 48px;
    padding-bottom: 24px;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

@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 1fr;
        gap: 40px;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 16px;
}

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

.footer-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 16px;
}

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

/* FIX: Contrast ratio for 18+ badge - use brighter color */
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #ef5460;
    border-radius: 50%;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ef5460;
}

.badge-license {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted-foreground);
}

.footer-heading {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color 0.25s ease;
    text-decoration: none;
}

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

.footer-payments {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-payments .footer-heading {
    margin-bottom: 12px;
}

.footer-payments .payment-logos {
    gap: 8px;
}

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

.copyright {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 8px;
}

/* FIX: Contrast ratio for footer disclaimer - increase opacity/brighten color */
.footer-disclaimer {
    font-size: 12px;
    color: var(--muted-foreground);
    margin: 0;
    opacity: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

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

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

/* Stagger delays for grid children */
.game-cards-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.game-cards-grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.game-cards-grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.game-cards-grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.game-cards-grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.game-cards-grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }
.game-cards-grid .animate-on-scroll:nth-child(7) { transition-delay: 600ms; }
.game-cards-grid .animate-on-scroll:nth-child(8) { transition-delay: 700ms; }

.bonus-cards-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.bonus-cards-grid .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.bonus-cards-grid .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.bonus-cards-grid .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }

.faq-list .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.faq-list .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.faq-list .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.faq-list .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.faq-list .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.faq-list .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }
.faq-list .animate-on-scroll:nth-child(7) { transition-delay: 480ms; }
.faq-list .animate-on-scroll:nth-child(8) { transition-delay: 560ms; }

/* ============================================
   RESPONSIBLE GAMBLING PAGE - Subdued styles
   ============================================ */
.responsible-hero {
    min-height: 360px;
    padding: 100px 0 48px;
}

@media (min-width: 768px) {
    .responsible-hero {
        min-height: 400px;
        padding: 120px 0 64px;
    }
}

@media (min-width: 1024px) {
    .responsible-hero {
        min-height: 440px;
        padding: 140px 0 80px;
    }
}

.hero-gradient-responsible {
    background: linear-gradient(135deg,
        rgba(12, 14, 26, 1) 0%,
        rgba(18, 20, 36, 0.97) 40%,
        rgba(20, 28, 52, 0.25) 70%,
        rgba(12, 14, 26, 1) 100%) !important;
}

.responsible-hero-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.responsible-page .hero {
    min-height: 320px;
}

.responsible-content {
    padding: 56px 0;
}

@media (min-width: 1024px) {
    .responsible-content {
        padding: 96px 0;
    }
}

.responsible-content .container {
    max-width: 860px;
}

.responsible-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.responsible-content p {
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.7;
    margin: 0 0 16px;
    opacity: 0.9;
}

.responsible-content ul {
    margin: 0 0 20px;
    padding-left: 24px;
    list-style: disc;
}

.responsible-content li {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--foreground);
    opacity: 0.9;
}

.responsible-content p a,
.responsible-content li a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.responsible-content p a:hover,
.responsible-content li a:hover {
    text-decoration-thickness: 2px;
}

.help-resources {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin: 24px 0;
}

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

.help-resource-card {
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.help-resource-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--foreground);
}

.help-resource-card h4 {
    margin-bottom: 8px;
    color: var(--foreground);
}

.help-resource-card a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 15px;
}

/* Steps list for limit-setting */
.steps-list {
    counter-reset: steps;
    padding-left: 0;
    list-style: none;
}

.steps-list li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.6;
    opacity: 0.9;
}

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

.steps-list li::before {
    content: counter(steps);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 164, 58, 0.15);
    color: var(--primary);
    border-radius: 50%;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

/* Tools grid for responsible gambling */
.tools-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 40px;
}

.tool-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.tool-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(42, 45, 66, 0.5);
    border-radius: 10px;
}

.tool-title {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2px;
}

.tool-desc {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

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

    .tool-title {
        font-size: 17px;
    }

    .tool-desc {
        font-size: 15px;
    }
}

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

/* Warning checklist */
.warning-checklist {
    margin: 16px 0 24px;
    padding-left: 0;
    list-style: none;
}

.warning-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--foreground);
    opacity: 0.9;
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
}

.warning-checklist li:last-child {
    border-bottom: none;
}

.warning-checklist li::before {
    content: '⚠';
    flex-shrink: 0;
    font-size: 16px;
    opacity: 0.5;
    margin-top: 1px;
}

/* ============================================
   REWARD PAGE - Minimal redirect splash
   ============================================ */
.reward-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--background);
    position: relative;
}



.reward-splash {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px;
    max-width: 480px;
}

.reward-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 164, 58, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.reward-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

.reward-text {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    color: var(--foreground);
    margin: 0;
}

.reward-spinner {
    display: flex;
    gap: 8px;
}

.reward-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: dotPulse 1.4s ease-in-out infinite;
}

.reward-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.reward-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1); }
}

.reward-fallback-btn {
    margin-top: 8px;
}

.reward-micro {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
    text-align: center;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* Live badge for live casino */
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 6px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Body scroll lock */
body.menu-open {
    overflow: hidden;
}

/* Spacer above main content for fixed header */
#main-content {
    padding-top: 0;
}

/* ============================================
   SPIELAUTOMATEN PAGE - Hero & Sections
   ============================================ */
.hero-slots {
    min-height: 520px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .hero-slots {
        min-height: 580px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-slots {
        min-height: 640px;
    }
}

/* Slot category info blocks within tabs */
.slot-category-info {
    margin-top: 24px;
}

.slot-category-info h3 {
    margin-bottom: 12px;
}

/* ============================================
   BONUS PAGE - Hero & Sections
   ============================================ */
.hero-bonus {
    min-height: 520px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .hero-bonus {
        min-height: 580px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-bonus {
        min-height: 640px;
    }
}

/* Cashback section */
.cashback-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.formula-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

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

.formula-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 16px;
}

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

.formula-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .formula-display {
        font-size: 18px;
        gap: 8px;
    }
}

.formula-part {
    padding: 4px 8px;
    background: var(--muted);
    border-radius: 6px;
    white-space: nowrap;
}

.formula-operator {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
}

.formula-highlight {
    background: rgba(212, 164, 58, 0.15);
    color: var(--primary);
    border: 1px solid rgba(212, 164, 58, 0.3);
}

.formula-desc {
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

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

@media (min-width: 768px) {
    .cashback-tiers-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 16px;
    }
}

.cashback-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.cashback-percent {
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 768px) {
    .cashback-percent {
        font-size: 32px;
    }
}

.cashback-tier-name {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* ============================================
   LIVE CASINO PAGE - Hero & Sections
   ============================================ */
.hero-live {
    min-height: 520px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .hero-live {
        min-height: 580px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-live {
        min-height: 640px;
    }
}

.hero-gradient-live {
    background: linear-gradient(135deg,
        rgba(12, 14, 26, 1) 0%,
        rgba(20, 24, 48, 0.95) 30%,
        rgba(30, 48, 96, 0.35) 60%,
        rgba(12, 14, 26, 1) 100%) !important;
}

.hero-glow-live {
    top: 25%;
    left: 30%;
    background: radial-gradient(circle, rgba(30, 48, 96, 0.18) 0%, rgba(212, 164, 58, 0.08) 40%, transparent 70%) !important;
}

/* Game Shows Grid */
.game-shows-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

.game-shows-grid .game-card {
    border-color: rgba(30, 48, 96, 0.3);
}

.game-shows-grid .game-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(30, 48, 96, 0.2), 0 0 16px rgba(212, 164, 58, 0.1);
}

/* ============================================
   HOMEPAGE - Hero Layout
   ============================================ */
.hero-home {
    min-height: 560px;
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    .hero-home {
        min-height: 620px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-home {
        min-height: 680px;
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
    }
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary);
}

.hero-cta-group {
    margin-top: 24px;
}

@media (min-width: 768px) {
    .hero-cta-group {
        margin-top: 32px;
    }
}

.hero-micro {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted-foreground);
}

/* Hero floating game cards */
.hero-visual {
    display: none;
}

@media (min-width: 768px) {
    .hero-visual {
        display: block;
        position: relative;
        min-height: 280px;
    }
}

@media (min-width: 1024px) {
    .hero-visual {
        min-height: 360px;
    }
}

.hero-floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 164, 58, 0.1);
    border: 1px solid rgba(212, 164, 58, 0.2);
    object-fit: cover;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 0;
    left: 5%;
    width: 55%;
    max-width: 240px;
    z-index: 3;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 20%;
    right: 0;
    width: 50%;
    max-width: 220px;
    z-index: 2;
    animation-delay: -2s;
}

.floating-card-3 {
    bottom: 0;
    left: 15%;
    width: 48%;
    max-width: 200px;
    z-index: 1;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.5deg); }
    50% { transform: translateY(-4px) rotate(-0.3deg); }
    75% { transform: translateY(-12px) rotate(0.2deg); }
}

/* ============================================
   HOMEPAGE - Payment Section
   ============================================ */
.payment-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

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

.payment-group {
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.payment-group-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 16px;
}

.payment-logos-large {
    gap: 10px;
}

.payment-logos-large .payment-logo {
    padding: 8px 14px;
    font-size: 12px;
}

/* Payment stats row */
.payment-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .payment-stats-row {
        gap: 48px;
    }
}

.payment-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-stat .stat-number {
    font-size: 36px;
}

@media (min-width: 768px) {
    .payment-stat .stat-number {
        font-size: 48px;
    }
}

.payment-stat-label {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* ============================================
   HOMEPAGE - VIP Benefits Grid
   ============================================ */
.vip-benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

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

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

/* Provider section tighter padding */
.provider-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

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

/* ============================================
   CRYPTO ICONS GRID
   ============================================ */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

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

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

.crypto-icon {
    width: 40px;
    height: 40px;
}

.crypto-name {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* ============================================
   KYC STEPS / PROCESS TIMELINE
   ============================================ */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.process-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 164, 58, 0.15);
    color: var(--primary);
    border-radius: 50%;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step-title {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.process-step-desc {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   MOBILE EXPERIENCE SECTION
   ============================================ */
.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

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

.split-text h2 {
    margin-bottom: 16px;
}

.split-text p {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 16px;
}

.split-image {
    display: flex;
    justify-content: center;
}

.split-image img {
    max-width: 320px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 164, 58, 0.1);
}

/* Diagonal gold slash decorative motif */
.gold-slash-motif {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 30%;
    height: 160%;
    background: linear-gradient(135deg, rgba(212, 164, 58, 0.06) 0%, transparent 100%);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* ============================================
   ZAHLUNGSMETHODEN PAGE - Hero & Sections
   ============================================ */
.hero-payments {
    min-height: 520px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .hero-payments {
        min-height: 580px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1024px) {
    .hero-payments {
        min-height: 640px;
    }
}

.hero-gradient-payments {
    background: linear-gradient(135deg,
        rgba(12, 14, 26, 1) 0%,
        rgba(18, 22, 40, 0.95) 30%,
        rgba(25, 40, 80, 0.3) 65%,
        rgba(12, 14, 26, 1) 100%) !important;
}

.hero-glow-payments {
    top: 25%;
    left: 25%;
    background: radial-gradient(circle, rgba(212, 164, 58, 0.1) 0%, rgba(25, 40, 80, 0.08) 50%, transparent 70%) !important;
}

.hero-payment-icons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

@media (min-width: 1024px) {
    .hero-payment-icons {
        min-height: 360px;
    }
}

.hero-payment-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 20px 60px rgba(212, 164, 58, 0.15));
    animation: floatCard 6s ease-in-out infinite;
}

/* Paysafecard spotlight section */
.paysafe-spotlight {
    max-width: 860px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .paysafe-grid {
        grid-template-columns: 1.4fr 0.6fr;
        gap: 32px;
        align-items: start;
    }
}

.paysafe-info h3 {
    margin-bottom: 12px;
}

.paysafe-info p {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 20px;
}

.paysafe-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.paysafe-features .feature-item {
    padding: 16px;
}

.paysafe-notice {
    display: flex;
    align-items: flex-start;
}

/* Crypto grid responsive adjustments */
@media (min-width: 480px) {
    .crypto-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

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