/* ============================================
   FUGU CASINO - DESIGN SYSTEM
   Pop-art underwater aesthetic
   Single dark theme (no toggle per brief)
   ============================================ */

:root {
    --muted-foreground: #b8c5d6;
    /* Backgrounds */
    --background: #050e1a;
    --background-alt: #0a1828;
    --foreground: #f0fdfa;
    --card: #0c1e3e;
    --card-foreground: #f0fdfa;
    --popover: #0c1e3e;
    --popover-foreground: #f0fdfa;

    /* Primary - vivid turquoise (bioluminescent coral) */
    --primary: #2dd4bf;
    --primary-foreground: #042f2e;
    --primary-dim: #14b8a6;

    /* Secondary - deep navy */
    --secondary: #1e293b;
    --secondary-foreground: #f0fdfa;

    /* Muted - stormy waters */
    --muted: #1e293b;
    --muted-foreground: #94a3b8;

    /* Accent - rich gold (buried treasure) */
    --accent: #f59e0b;
    --accent-foreground: #1c1917;
    --accent-dim: #d97706;

    /* Coral - secondary accent */
    --coral: #e11d48;
    --coral-foreground: #ffffff;

   /* Destructive */
   --destructive: #ef4444;
   --destructive-foreground: #ffffff;

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

    /* Input */
    --input: #1e293b;

    /* Ring */
    --ring: #2dd4bf;

    /* Fonts */
    --font-heading: "Bricolage Grotesque", sans-serif;
    --font-body: "DM Sans", sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 80px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(45, 212, 191, 0.4);
    --shadow-glow-gold: 0 0 20px rgba(245, 158, 11, 0.4);

    /* Transitions */
    --transition-base: 300ms ease-out;
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

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

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

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

a:hover {
    color: var(--primary-dim);
}

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

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.body-text p {
    margin-bottom: var(--space-sm);
}

.body-text a,
.responsible-block a {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--primary);
}

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

.section-heading {
    margin-bottom: var(--space-md);
}

.text-center .btn,
p.text-center .btn,
p .btn {
    max-width: 100%;
}

.lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

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

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

.text-coral {
    color: #fb7185;
}

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

/* ============================================
   LAYOUT
   ============================================ */

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

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

.section {
    padding: 48px 0 40px;
    scroll-margin-top: 100px;
}

.section[id],
.section[id] * {
    scroll-margin-top: 100px;
}

/* Ensure anchored/programmatically-targeted elements clear the sticky header */
[id],
.feature-card,
.sportsbook-teaser,
.payment-strip,
.responsible-block,
.tldr-box,
.faq-accordion,
.data-table,
.cta-banner,
.hero,
h2.section-heading {
    scroll-margin-top: 100px;
}

.section-lg {
    padding: var(--space-2xl) 0;
}

.full-bleed {
    width: 100%;
}

.center {
    text-align: center;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #050e1a;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .site-header {
        background: rgba(5, 14, 26, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.site-brand .logo-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-brand .logo-svg svg {
    width: 36px;
    height: 36px;
}

@media (min-width: 768px) {
    .site-brand .logo-svg svg {
        width: 40px;
        height: 40px;
    }
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: border-color var(--transition-base);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

/* Navigation */
.primary-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 73px);
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-md);
    flex-direction: column;
}

.primary-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-md);
}

.nav-list li {
    border-bottom: 1px solid var(--border-light);
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-sm) 0;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--foreground);
    width: 100%;
}

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

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

.nav-actions .btn {
    width: 100%;
    text-align: center;
}

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

    .primary-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        height: auto;
        z-index: auto;
        background: transparent;
        padding: 0;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-lg);
        margin-bottom: 0;
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-link {
        min-height: auto;
        padding: var(--space-xs) 0;
        font-size: 1rem;
        width: auto;
    }

    .nav-actions {
        flex-direction: row;
        gap: var(--space-sm);
        margin-left: var(--space-lg);
    }

    .nav-actions .btn {
        width: auto;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 44px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: normal;
    max-width: 100%;
    word-break: break-word;
    text-align: center;
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
    background: var(--accent-dim);
    color: var(--accent-foreground);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px rgba(45, 212, 191, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dim);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.5);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

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

@media (max-width: 480px) {
    .btn-lg {
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 var(--space-md);
}

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

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: #b8c5d6;
    font-size: 0.9375rem;
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.payment-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

.license-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.responsible-badges {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--coral);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.875rem;
}

.badge-ssl {
    display: inline-block;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 600;
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    background: linear-gradient(180deg, #0a1828 0%, #050e1a 100%);
    padding: 32px 0 32px;
    overflow: clip;
}

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

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(45, 212, 191, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(251, 113, 133, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
    z-index: 1;
}

.hero-content {
    max-width: 640px;
    order: 2;
}

.hero h1 {
    max-width: 800px;
    margin-bottom: var(--space-md);
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.hero-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(45, 212, 191, 0.3));
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

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

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

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

@media (min-width: 768px) {
    .hero-inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        order: 0;
    }

    .hero-image-wrap {
        order: 0;
    }

    .hero-image {
        max-width: 380px;
        flex-shrink: 0;
    }

    .hero-cta {
        align-items: flex-start;
        flex-direction: row;
    }

    .hero-stats {
        margin-top: var(--space-lg);
        justify-content: flex-start;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   FEATURE CARD GRID
   ============================================ */

.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    min-width: 0;
}

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

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-turquoise {
    background: var(--primary);
    color: var(--primary-foreground);
}

.icon-coral {
    background: var(--coral);
    color: var(--coral-foreground);
}

.icon-gold {
    background: var(--accent);
    color: var(--accent-foreground);
}

.icon-emoji {
    font-size: 1.75rem;
    line-height: 1;
}

.feature-card-title {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.feature-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, #0a1828 0%, #050e1a 100%);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    position: relative;
    overflow: clip;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 48px var(--space-md);
    }
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(245, 158, 11, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.cta-subtext {
    font-size: 1.125rem;
    color: #c7e9e4;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.cta-button {
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   DATA TABLE
   ============================================ */

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

.table-wrapper:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

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

.data-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    text-align: left;
    padding: var(--space-sm);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.data-table tbody tr:nth-child(odd) {
    background: var(--background-alt);
}

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

.data-table td {
    padding: var(--space-sm);
    color: var(--foreground);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.data-table .highlight-cell {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

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

.faq-item {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item[open] {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--foreground);
    list-style: none;
}

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

.faq-question-text {
    flex: 1;
}

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

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.faq-toggle-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.faq-toggle-icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item[open] .faq-toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

/* Summary / TL;DR box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-sm) 0;
}

.tldr-box h3 {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.tldr-box p {
    color: #cbd5e1;
    margin: 0;
}

/* Callout / highlight box */
.callout {
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.callout-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: var(--accent);
}

.callout-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.callout-content {
    flex: 1;
}

.callout-content p {
    margin: 0;
    color: var(--foreground);
}

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

.stat-highlight-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-highlight-label {
    font-size: 1rem;
    color: var(--muted-foreground);
}

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

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--coral);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
    background: var(--background-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: normal;
    font-weight: 400;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 600;
}

/* Social proof */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--foreground);
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ============================================
   RESPONSIBLE GAMBLING BLOCK
   ============================================ */

.responsible-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.responsible-block p {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PAYMENT STRIP
   ============================================ */

.payment-strip {
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

/* ============================================
   SPORTSBOOK TEASER
   ============================================ */

.sportsbook-teaser {
    background: linear-gradient(135deg, #1e293b 0%, #0c1e3e 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: clip;
}

.sportsbook-teaser::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(251, 113, 133, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sportsbook-teaser > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */

.content-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.content-block h3 {
    color: var(--primary);
}

/* Logo and brand */
.site-brand {
    gap: 10px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

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

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

.breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

/* Fallback: ensure content is visible even if IntersectionObserver fails */
@media (min-width: 768px) {
    .hero .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@keyframes confetti-fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0.6; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ============================================
   UTILITY
   ============================================ */

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

.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

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

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.sitemap-list li {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.sitemap-list li:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.sitemap-list h3 {
    margin-bottom: var(--space-xs);
}

.sitemap-list h3 a {
    color: var(--foreground);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    transition: color var(--transition-base);
}

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

.sitemap-list p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

