/*
 * Casea Casino - Design System
 * Premium nocturnal glamour aesthetic
 * Dark-first, no theme switcher
 * Fonts: Syne (display) + Manrope (body)
 */

/* ============================================
   DESIGN TOKENS
   Dark-only theme - no light mode
   ============================================ */
:root {
    /* Core palette */
    --background: #020617;
    --background-elevated: #0f172a;
    --foreground: #e2e8f0;
    --card: #0f172a;
    --card-foreground: #e2e8f0;

    /* Primary (electric blue) */
    --primary: #1c6ef5;
    --primary-strong: #2563eb;
    --primary-foreground: #ffffff;
    --primary-glow: rgba(59, 130, 246, 0.35);

    /* Secondary (dark navy) */
    --secondary: #1e293b;
    --secondary-foreground: #e2e8f0;

    /* Muted */
    --muted: #334155;
    --muted-foreground: #a0aec0;

    /* Accent (luminous cyan) */
    --accent: #22d3ee;
    --accent-foreground: #020617;
    --accent-glow: rgba(34, 211, 238, 0.35);

    /* Borders */
    --border: #1e293b;
    --border-light: #334155;

    /* Input */
    --input: #1e293b;
    --ring: #22d3ee;

    /* Custom design tokens */
    --edge-gow-color: rgba(34, 211, 238, 0.6);
    --font-display: "Syne", sans-serif;
    --font-body: "Manrope", sans-serif;
    --container-max: 1200px;
    --header-height: 64px;
    --section-gap: 44px;
    --card-padding: 24px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: 250ms cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 16px var(--accent-glow);
}

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

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

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   Syne for display, Manrope for body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.2;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
}

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

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

@media (min-width: 1024px) {
    :root {
        --section-gap: 72px;
        --card-padding: 32px;
    }
}

.full-bleed {
    width: 100%;
}

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

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

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-strong);
    color: var(--primary-foreground);
    padding: 8px 16px;
    z-index: 2000;
    border-radius: 0 0 var(--radius-sm) 0;
    font-size: 14px;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .site-header {
        background: rgba(2, 6, 23, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.01em;
}

/* Primary nav - mobile drawer by default */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: 24px 20px;
    display: none;
}

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

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.nav-link:hover {
    background: var(--secondary);
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
    background: var(--secondary);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn-login {
    display: none;
}

@media (min-width: 480px) {
    .btn-login {
        display: inline-flex;
    }
}

/* Mobile: hide header actions to prevent overflow, push toggle right */
@media (max-width: 767px) {
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        margin-left: auto;
    }
}

/* Desktop nav - inline */
@media (min-width: 768px) {
    .primary-nav {
        position: static;
        display: block;
        background: transparent;
        padding: 0;
        overflow: visible;
        flex: 1;
        margin-left: 24px;
    }

    .nav-list {
        flex-direction: row;
        gap: 4px;
        justify-content: flex-start;
    }

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

    .header-actions {
        margin-left: auto;
    }
}

/* ============================================
   MOBILE MENU TOGGLE
   ============================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    margin: 0 auto;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-strong);
    color: var(--primary-foreground);
    box-shadow: 0 0 0 1px var(--primary-strong), 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.02);
    box-shadow: 0 0 0 1px var(--primary), 0 6px 24px var(--primary-glow);
}

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

.btn-ghost:hover {
    background: var(--secondary);
    color: var(--accent);
    border-color: var(--accent);
}

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

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

/* ============================================
   HERO SECTION
   Full-bleed with model image and edge-glow
   ============================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 48px 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--background-elevated) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    box-shadow: 0 0 12px var(--accent-glow);
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 560px;
}

.hero-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image-wrap {
    position: relative;
    order: -1;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .hero-heading {
        font-size: 42px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .hero-image-wrap {
        order: 0;
        min-height: 440px;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 48px;
    }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subheading {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 640px;
}

@media (min-width: 768px) {
    .section-heading { font-size: 30px; }
}

@media (min-width: 1024px) {
    .section-heading { font-size: 36px; }
}

/* ============================================
   FEATURE CARD GRID
   Responsive grid with edge-glow cards
   ============================================ */
.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.feature-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: scale(1.02);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-card-media {
    margin: calc(0px - var(--card-padding)) calc(0px - var(--card-padding)) 20px;
    aspect-ratio: 5 / 3;
    overflow: hidden;
}

.feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ============================================
   CTA BANNER
   Full-width conversion section
   ============================================ */
.cta-banner {
    position: relative;
    background: linear-gradient(180deg, var(--background-elevated) 0%, var(--secondary) 100%);
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.cta-banner-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    box-shadow: 0 0 16px var(--accent-glow);
}

.cta-banner-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--foreground);
}

.cta-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
}

.cta-button {
    margin-bottom: 12px;
}

.cta-microcopy {
    font-size: 13px;
    color: var(--muted-foreground);
}

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

    .cta-heading {
        font-size: 36px;
    }
}

/* ============================================
   FAQ ACCORDION
   Progressive enhancement via .enhanced class
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    text-align: left;
    padding: 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
}

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

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

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.faq-toggle::before {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-toggle::after {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
    transform: scaleY(0);
}

.faq-answer {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-answer-inner {
    padding-top: 16px;
}

.faq-answer-inner p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Enhanced (JS-enabled) state - collapsed by default */
.faq-accordion.enhanced .faq-answer {
    max-height: 0;
}

.faq-accordion.enhanced .faq-item[data-open] .faq-answer {
    max-height: 600px;
}

/* ============================================
   SPLIT LAYOUT
   Two-column content + image
   ============================================ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    order: -1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .split-image {
        order: 0;
        min-height: 360px;
    }
}

/* ============================================
   VIP STEPPER
   Horizontal tier visualization
   ============================================ */
.vip-stepper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.vip-tier {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    overflow: hidden;
}

.vip-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

.vip-tier-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.vip-tier-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.vip-tier-cashback {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   PAYMENT BADGES
   Pill-style payment method indicators
   ============================================ */
.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: color var(--transition), border-color var(--transition);
}

.payment-badge:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.trust-badge {
    text-align: center;
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

.trust-badge-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
}

.trust-badge-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.trust-badge-desc {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   CALLOUT / SUMMARY BOXES
   ============================================ */
.callout-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.callout-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    box-shadow: 0 0 8px var(--accent-glow);
}

.callout-box-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.callout-box p {
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

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

.summary-box {
    background: var(--secondary);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.summary-box-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.summary-box p {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

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

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

.stat-source {
    font-size: 12px;
    color: var(--muted-foreground);
    opacity: 0.7;
}

/* ============================================
   PULL QUOTE / BLOCKQUOTE
   ============================================ */
.pull-quote {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    padding: 24px 0 24px 24px;
    border-left: 3px solid var(--accent);
    margin: 32px 0;
}

@media (min-width: 768px) {
    .pull-quote {
        font-size: 24px;
        padding: 32px 0 32px 32px;
    }
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: 12px;
}

blockquote {
    padding: 20px 24px;
    border-left: 3px solid var(--accent);
    margin: 24px 0;
    background: var(--secondary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

blockquote p {
    font-size: 17px;
    color: var(--foreground);
    margin-bottom: 8px;
}

blockquote p:last-child {
    margin-bottom: 0;
}

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

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

thead {
    background: var(--secondary);
}

th {
    text-align: left;
    padding: 14px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid var(--border-light);
}

td {
    padding: 14px 16px;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

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

tbody tr:hover {
    background: var(--secondary);
}

/* ============================================
   CURRENCY BADGES
   ============================================ */
.currency-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.currency-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

@media (max-width: 639px) {
    .currency-badges {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-items: center;
    }
}

/* ============================================
   DEPOSIT STEPS
   Vertical stack of deposit bonus cards
   ============================================ */
.deposit-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deposit-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.deposit-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

.deposit-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    background: var(--secondary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
}

.deposit-step-body {
    flex: 1;
    min-width: 0;
}

.deposit-step-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.deposit-step-desc {
    font-size: 15px;
    color: var(--muted-foreground);
}

/* ============================================
   STUDIO CARDS (Live Casino)
   ============================================ */
.studio-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.studio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.studio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
    z-index: 1;
}

.studio-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.studio-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-card-body {
    padding: 24px;
}

.studio-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.studio-card-desc {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

.studio-card-meta {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

/* ============================================
   GAME TITLES GRID
   ============================================ */
.game-titles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.game-title-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.game-title-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

.game-title-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.game-title-info {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   INFO NOTE
   ============================================ */
.info-note {
    background: var(--secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    font-size: 15px;
    color: var(--muted-foreground);
    margin: 24px 0;
}

.info-note strong {
    color: var(--foreground);
}

/* ============================================
   JACKPOT TILES
   ============================================ */
.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.jackpot-tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.jackpot-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.9) 0%, transparent 100%);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}

/* ============================================
   PROCESSING TIME CARDS
   ============================================ */
.processing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.processing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.processing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

.processing-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.processing-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 12px;
}

.processing-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.processing-card-time {
    font-size: 15px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 4px;
}

.processing-card-fee {
    font-size: 13px;
    color: var(--muted-foreground);
}

/* ============================================
   MOBILE DEVICE MOCKUP
   ============================================ */
.device-mockup {
    max-width: 280px;
    margin: 0 auto;
}

.device-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

/* ============================================
   INLINE SEO ANCHOR LINKS
   Styled differently from nav links
   ============================================ */
.content-anchor {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition);
}

.content-anchor:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-elevated);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

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

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
}

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

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

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

.footer-link {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--accent);
}

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

.footer-age {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-top: 8px;
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   PROVIDER STRIP
   Grayscale logo/name strip below game grid
   ============================================ */
.provider-strip {
    margin-top: 40px;
    text-align: center;
}

.provider-strip-label {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.provider-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: color var(--transition);
}

.provider-name:hover {
    color: var(--accent);
}

/* ============================================
   PAYMENT SHOWCASE TILES
   Grid of payment method icons
   ============================================ */
.payment-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.payment-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.payment-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.payment-tile:hover {
    transform: scale(1.03);
    border-color: var(--border-light);
    box-shadow: var(--shadow-hover);
}

.payment-tile:hover::before {
    opacity: 1;
}

.payment-tile img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.payment-tile-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

.payment-tile:hover .payment-tile-name {
    color: var(--accent);
}

/* ============================================
   BONUS TEASER SECTION
   Full-bleed section for welcome bonus
   ============================================ */
.bonus-teaser-section {
    background: linear-gradient(180deg, var(--background-elevated) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.bonus-teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    box-shadow: 0 0 12px var(--accent-glow);
}

.bonus-teaser-content .section-heading {
    margin-bottom: 12px;
}

.bonus-teaser-content .section-subheading {
    margin-bottom: 24px;
}

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sitemap-entry {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding);
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sitemap-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.sitemap-entry:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-card);
}

.sitemap-entry:hover::before {
    opacity: 1;
}

.sitemap-entry-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
}

.sitemap-entry-title a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.3);
    text-underline-offset: 3px;
}

.sitemap-entry-title a:hover {
    text-decoration-color: var(--accent);
}

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

/* ============================================
   ANIMATIONS
   Scroll-triggered fade-in slide-up
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered children */
.feature-card-grid .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.feature-card-grid .animate-on-scroll:nth-child(2) { transition-delay: 150ms; }
.feature-card-grid .animate-on-scroll:nth-child(3) { transition-delay: 300ms; }
.feature-card-grid .animate-on-scroll:nth-child(4) { transition-delay: 450ms; }
.feature-card-grid .animate-on-scroll:nth-child(5) { transition-delay: 600ms; }
.feature-card-grid .animate-on-scroll:nth-child(6) { transition-delay: 750ms; }
.feature-card-grid .animate-on-scroll:nth-child(7) { transition-delay: 900ms; }
.feature-card-grid .animate-on-scroll:nth-child(8) { transition-delay: 1050ms; }

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

.maxw-600 { max-width: 600px; }
.maxw-800 { max-width: 800px; }

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

*:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}
