/*
 * Golisimo Casino - Design System
 * Dark football-luxury aesthetic with lime-green accents.
 * Fonts: Anton (display) + Inter (body).
 * Mobile-first, dark-only theme.
 */

/* ============================================
   DESIGN TOKENS
   Dark theme values applied directly to :root
   (no theme switcher - dark is the only theme).
   ============================================ */
:root {
    /* Backgrounds */
    --background: #0c0a09;
    --foreground: #fafaf9;
    --card: #1e293b;
    --card-foreground: #fafaf9;
    --popover: #1e293b;
    --popover-foreground: #fafaf9;

    /* Brand */
    --primary: #a3e635;
    --primary-foreground: #0c0a09;
    --secondary: #1e293b;
    --secondary-foreground: #fafaf9;

    /* Muted */
    --muted: #677b98;
    --muted-foreground: #c1cad6;

    /* Accent */
    --accent: #bef264;
    --accent-foreground: #0c0a09;

    /* Semantic */
    --destructive: #e30d32;
    --destructive-foreground: #fafaf9;
    --border: #334155;
    --input: #1e293b;
    --ring: #a3e635;

    /* Custom palette */
    --obsidian: #0c0a09;
    --charcoal: #1e293b;
    --lime: #a3e635;
    --lime-bright: #bef264;
    --lime-glow: rgba(163, 230, 53, 0.12);
    --lime-glow-strong: rgba(163, 230, 53, 0.22);
    --cream: #fafaf9;
    --gold: #d4af37;

    /* Typography */
    --font-display: "Anton", "Arial Narrow", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-gap: 80px;
    --section-gap-mobile: 48px;
    --card-padding: 32px;
    --card-padding-mobile: 24px;
    --grid-gap: 24px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;

    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 720px;
    --header-height: 72px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Transitions */
    --transition: 250ms ease-out;
    --transition-slow: 600ms ease-out;
}

/* ============================================
   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(--lime);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--lime-bright);
}

ul, ol {
    list-style: none;
}

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

section {
    overflow: visible;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--cream);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 400;
}

h1 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(26px, 4.5vw, 36px);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--muted-foreground);
}

strong, b {
    color: var(--cream);
    font-weight: 600;
}

.micro-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lime);
    margin-bottom: 12px;
}

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

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

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

.site-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--cream);
    letter-spacing: 0.02em;
}

/* Desktop navigation */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    display: none;
    gap: 12px;
    align-items: center;
}

/* ============================================
   MOBILE MENU DRAWER
   ============================================ */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    display: none;
    padding: 24px;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    color: var(--foreground);
    font-weight: 500;
    font-size: 17px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

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

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

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

/* Desktop: show nav inline, hide hamburger */
@media (min-width: 1024px) {
    .primary-nav {
        position: static;
        display: block;
        background: transparent;
        padding: 0;
        overflow: visible;
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        min-height: auto;
        padding: 8px 0;
        border-bottom: none;
        font-size: 15px;
    }

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

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

    .header-cta {
        display: flex;
    }

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--obsidian);
    border-top: 1px solid var(--border);
    padding-top: var(--section-gap-mobile);
    padding-bottom: 24px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

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

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

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lime);
    margin-bottom: 16px;
}

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

.footer-links a {
    color: var(--muted-foreground);
    font-size: 15px;
    transition: color var(--transition);
}

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

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

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-foreground);
    min-height: 36px;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-lg) auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    min-height: 44px;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--lime);
    color: var(--primary-foreground);
    border-color: var(--lime);
    box-shadow: 0 0 20px var(--lime-glow);
}

.btn-primary:hover {
    background: var(--lime-bright);
    border-color: var(--lime-bright);
    box-shadow: 0 0 30px var(--lime-glow-strong);
    color: var(--primary-foreground);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--lime);
    color: var(--lime);
}

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

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

.btn-block {
    width: 100%;
}

/* ============================================
   HERO SECTION
   Full-bleed dark hero with diagonal lime glow.
   ============================================ */
.hero {
    position: relative;
    background: var(--obsidian);
    overflow: clip;
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, var(--lime-glow) 50%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

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

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

.hero-headline {
    font-size: clamp(32px, 6vw, 48px);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

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

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

@media (min-width: 480px) {
    .hero-cta-group {
        flex-direction: row;
        align-items: center;
    }
}

.hero-cta-secondary {
    color: var(--muted-foreground);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
}

.hero-cta-secondary:hover {
    color: var(--lime);
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ============================================
   OFFER CARD COMPONENT
   Dark charcoal card with lime-green left accent.
   ============================================ */
.offer-card {
    position: relative;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding-mobile);
    max-width: 640px;
    margin: 0 auto;
    transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--lime);
    border-radius: var(--radius) 0 0 var(--radius);
}

.offer-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px var(--lime-glow);
}

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

.offer-card-content {
    padding-left: 12px;
}

.offer-card-headline {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.offer-card-percentage {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 64px);
    color: var(--lime);
    line-height: 1;
}

.offer-card-max {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    color: var(--cream);
    line-height: 1;
}

.offer-card-subtitle {
    font-size: 18px;
    color: var(--lime-bright);
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-card-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(12, 10, 9, 0.5);
    border-radius: var(--radius-sm);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.breakdown-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breakdown-stage {
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
    flex-shrink: 0;
}

.breakdown-detail {
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: right;
}

.offer-card-terms {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(12, 10, 9, 0.4);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--border);
}

.offer-card-cta {
    width: 100%;
}

@media (min-width: 480px) {
    .offer-card-cta {
        width: auto;
    }
}

/* ============================================
   FEATURE GRID COMPONENT
   Responsive grid of category/feature cards.
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

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

    .feature-grid.grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding-mobile);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
}

.feature-card:hover {
    transform: scale(1.03);
    border-color: var(--lime);
    box-shadow: 0 0 24px var(--lime-glow);
}

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

.feature-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.feature-card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--cream);
}

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

/* ============================================
   CTA BANNER COMPONENT
   Full-bleed section with diagonal lime glow.
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--obsidian);
    overflow: clip;
    padding-top: var(--section-gap-mobile);
    padding-bottom: var(--section-gap-mobile);
    text-align: center;
}

.cta-banner-glow {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, var(--lime-glow) 50%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

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

.cta-banner-headline {
    font-size: clamp(26px, 5vw, 36px);
    color: var(--cream);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.cta-banner-btn {
    font-size: 18px;
    padding: 18px 40px;
    min-height: 52px;
}

@media (min-width: 1024px) {
    .cta-banner {
        padding-top: var(--section-gap);
        padding-bottom: var(--section-gap);
    }
}

/* ============================================
   SPLIT LAYOUT
   Two-column: text + visual, stacks on mobile.
   ============================================ */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.split-text {
    max-width: 520px;
}

.split-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ============================================
   TWO-COLUMN CARDS
   Used for promo pairs (reload + cashback, etc.)
   ============================================ */
.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

.two-column .feature-card {
    text-align: left;
}

/* ============================================
   VIP TIERS
   Ascending level cards for VIP program.
   ============================================ */
.vip-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
}

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

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

.vip-tier {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding-mobile);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.vip-tier:hover {
    transform: translateY(-4px);
    border-color: var(--lime);
}

.vip-tier-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 8px;
}

.vip-tier-cashback {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--lime);
    margin-bottom: 8px;
}

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

.vip-tier-featured {
    border-color: var(--lime);
    box-shadow: 0 0 24px var(--lime-glow);
}

/* ============================================
   PAYMENT STRIP
   Horizontal row of payment method badges.
   ============================================ */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.payment-strip .payment-badge {
    min-width: 100px;
    padding: 16px 20px;
    font-size: 15px;
}

/* ============================================
   SEO PARAGRAPH
   Constrained text block with inline anchor links.
   ============================================ */
.seo-paragraph {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.seo-paragraph p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.seo-paragraph a {
    color: var(--cream);
    text-decoration: underline;
    text-decoration-color: var(--lime);
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color var(--transition);
}

.seo-paragraph a:hover {
    color: var(--lime);
}

/* ============================================
   FAQ ACCORDION
   Native details/summary with custom styling.
   ============================================ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-section details {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

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

.faq-section summary::after {
    content: '+';
    font-size: 24px;
    color: var(--lime);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}

.faq-section details[open] summary::after {
    content: '\2212';
}

.faq-section summary:hover {
    color: var(--lime);
}

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

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.data-table thead {
    background: var(--lime);
}

.data-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    color: var(--primary-foreground);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.data-table td {
    padding: 14px 18px;
    color: var(--muted-foreground);
    border-top: 1px solid var(--border);
}

.data-table tbody tr:hover {
    background: rgba(163, 230, 53, 0.05);
}

.data-table td strong {
    color: var(--cream);
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-left: 4px solid var(--lime);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: var(--space-lg);
}

.summary-box-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lime);
    margin-bottom: 10px;
}

.summary-box p {
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 0;
}

/* Callout / highlight box */
.callout-box {
    background: rgba(163, 230, 53, 0.08);
    border: 1px solid var(--lime);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: var(--space-md) 0;
}

.callout-box-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 8px;
}

.callout-box p {
    color: var(--cream);
    font-size: 15px;
    margin-bottom: 0;
}

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

.stat-highlight-number {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 56px);
    color: var(--lime);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-highlight-label {
    font-size: 15px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Pull quote */
.pull-quote {
    position: relative;
    padding: 32px 24px;
    margin: var(--space-lg) 0;
    text-align: center;
}

.pull-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--lime);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.pull-quote blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pull-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    color: var(--lime);
    font-style: normal;
    font-weight: 600;
}

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

/* Betting slip (sportwetten.html) */
.betting-slip {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding-mobile);
}

@media (min-width: 768px) {
    .betting-slip {
        padding: var(--card-padding);
    }
}

.betting-slip-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lime);
    margin-bottom: 16px;
}

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

.betting-slip-row:last-child {
    border-bottom: none;
}

.betting-slip-event {
    font-size: 15px;
    color: var(--cream);
}

.betting-slip-odds {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--lime);
}

.betting-slip-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--lime);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.betting-slip-total-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--cream);
}

.betting-slip-total-value {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--lime);
}

/* Slot grid (casino-spiele.html) */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

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

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

.slot-tile {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.slot-tile:hover {
    transform: scale(1.03);
    border-color: var(--lime);
    box-shadow: 0 0 24px var(--lime-glow);
}

.slot-tile-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

.slot-tile-info {
    padding: 16px;
}

.slot-tile-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 4px;
}

.slot-tile-tag {
    font-size: 13px;
    color: var(--lime);
    font-weight: 600;
}

/* Phone mockup (casino-spiele.html) */
.phone-mockup {
    max-width: 280px;
    margin: 0 auto;
    position: relative;
}

.phone-mockup img {
    width: 100%;
    height: auto;
}

/* Live casino mini grid */
.live-game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

.live-game-card {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.live-game-card:hover {
    transform: scale(1.03);
    border-color: var(--lime);
}

.live-game-card-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.live-game-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 6px;
}

.live-game-card-desc {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    counter-reset: sitemap-counter;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sitemap-item {
    counter-increment: sitemap-counter;
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--card-padding-mobile);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sitemap-item:hover {
    border-color: var(--lime);
    box-shadow: 0 0 20px var(--lime-glow);
}

@media (min-width: 768px) {
    .sitemap-item {
        padding: var(--card-padding);
    }
}

.sitemap-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
    transition: color var(--transition);
}

.sitemap-link::before {
    content: counter(sitemap-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2px;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--lime);
    opacity: 0.7;
}

.sitemap-link:hover {
    color: var(--lime);
    text-decoration: underline;
    text-decoration-color: var(--lime);
    text-underline-offset: 4px;
}

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

/* Keep sitemap items at full opacity so text always meets contrast;
   only animate the transform (slide-up) for the scroll reveal. */
.sitemap-item.animate-on-scroll {
    opacity: 1;
}

/* Keep sitemap section header at full opacity so paragraph text
   always meets contrast; only animate the transform (slide-up). */
.sitemap-section .section-header.animate-on-scroll {
    opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* Staggered delays for grid children */
.feature-grid .feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-grid .feature-card:nth-child(2) { transition-delay: 100ms; }
.feature-grid .feature-card:nth-child(3) { transition-delay: 200ms; }
.feature-grid .feature-card:nth-child(4) { transition-delay: 300ms; }
.feature-grid .feature-card:nth-child(5) { transition-delay: 400ms; }
.feature-grid .feature-card:nth-child(6) { transition-delay: 500ms; }

.slot-grid .slot-tile:nth-child(1) { transition-delay: 0ms; }
.slot-grid .slot-tile:nth-child(2) { transition-delay: 80ms; }
.slot-grid .slot-tile:nth-child(3) { transition-delay: 160ms; }
.slot-grid .slot-tile:nth-child(4) { transition-delay: 240ms; }
.slot-grid .slot-tile:nth-child(5) { transition-delay: 320ms; }
.slot-grid .slot-tile:nth-child(6) { transition-delay: 400ms; }

.vip-tiers .vip-tier:nth-child(1) { transition-delay: 0ms; }
.vip-tiers .vip-tier:nth-child(2) { transition-delay: 80ms; }
.vip-tiers .vip-tier:nth-child(3) { transition-delay: 160ms; }
.vip-tiers .vip-tier:nth-child(4) { transition-delay: 240ms; }
.vip-tiers .vip-tier:nth-child(5) { transition-delay: 320ms; }

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

    * {
        scroll-behavior: auto;
    }

    .feature-card:hover,
    .offer-card:hover,
    .slot-tile:hover,
    .vip-tier:hover {
        transform: none;
    }
}

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.hidden { display: none !important; }

.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 for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection color */
::selection {
    background: var(--lime);
    color: var(--primary-foreground);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}
