/*
 * FUGU CASINO - Design System
 * Dark underwater fantasy theme with gold/turquoise/coral accents.
 * Fonts: Cinzel Decorative (headings), Lato (body).
 */

/* ============================================
   DESIGN TOKENS - Dark underwater theme
   ============================================ */
:root {
    color-scheme: dark;
    --background: #0a0f1f;
    --foreground: #f0f8ff;
    --card: #0f1b2d;
    --card-foreground: #f0f8ff;
    --popover: #0c1726;
    --popover-foreground: #f0f8ff;
    --primary: #00d3ff;
    --primary-foreground: #071018;
    --secondary: #11203a;
    --secondary-foreground: #e0f2fe;
    --muted: #1c2942;
    --muted-foreground: #b0c0d8;
    --accent: #ffd700;
    --accent-foreground: #1a1100;
    --coral: #ff6b6b;
    --coral-dark: #e85555;
    --teal: #00897b;
    --teal-light: #00d3ff;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #1e2d45;
    --input: #0f1b2d;
    --ring: #00d3ff;

    --font-heading: "Cinzel Decorative", Georgia, serif;
    --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 60px;
    --space-3xl: 100px;

    --container-max: 1200px;
    --header-height: 72px;

    --transition: 300ms ease-out;
}

/* Keep .dark identical - single theme, no toggle */
.dark {
    --background: #0a0f1f;
    --foreground: #f0f8ff;
    --card: #0f1b2d;
    --card-foreground: #f0f8ff;
    --popover: #0c1726;
    --popover-foreground: #f0f8ff;
    --primary: #00d3ff;
    --primary-foreground: #071018;
    --secondary: #11203a;
    --secondary-foreground: #e0f2fe;
    --muted: #1c2942;
    --muted-foreground: #b0c0d8;
    --accent: #ffd700;
    --accent-foreground: #1a1100;
    --coral: #ff6b6b;
    --coral-dark: #e85555;
    --teal: #00897b;
    --teal-light: #00d3ff;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #1e2d45;
    --input: #0f1b2d;
    --ring: #00d3ff;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    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);
}

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

article a {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

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

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
    letter-spacing: 0.5px;
}

h1 {
    font-size: 32px;
    font-weight: 900;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-body);
}

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

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

p {
    margin-bottom: 28px;
}

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

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

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

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

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 48px 0 48px;
    position: relative;
    overflow: clip;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

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

.ocean-bg {
    background: linear-gradient(180deg, #0a0f1f 0%, #0d1529 40%, #102035 100%);
    position: relative;
    overflow: clip;
}

.section-dark {
    background: var(--secondary);
}

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

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

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

.site-brand .logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.primary-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    padding: 8px 4px;
    position: relative;
    transition: color var(--transition);
}

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

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.3;
}

.btn-gold {
    background: var(--accent);
    color: #1a1100;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
    color: #1a1100;
}

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

.btn-outline:hover {
    background: rgba(0, 211, 255, 0.1);
    color: var(--primary);
}

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

.btn-coral {
    background: var(--coral);
    color: #2d0808;
    border-color: var(--coral);
}

.btn-coral:hover {
    background: var(--coral-dark);
    color: #2d0808;
    transform: scale(1.05);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

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

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

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

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

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* Mobile drawer */
@media (max-width: 767px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .primary-nav {
        display: flex;
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 360px;
        background: var(--background);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: stretch;
        padding: 24px 16px;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: 24px;
    }

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

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 14px 8px;
        font-size: 17px;
    }

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

    .header-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .header-cta .btn {
        width: 100%;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 32px 0 48px;
    overflow: clip;
    background: linear-gradient(180deg, #0a0f1f 0%, #0d2538 50%, #0a0f1f 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-full);
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
}

.hero-heading {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.hero-subtext {
    font-size: 18px;
    color: var(--foreground);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.hero-mascot {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 40px auto 0;
    animation: float 4s ease-in-out infinite;
}

.hero-mascot img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 211, 255, 0.2));
}

/* ============================================
   BUBBLES
   ============================================ */
.hero-bubbles,
.cta-banner-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 211, 255, 0.15), transparent 70%);
    border: 1px solid rgba(0, 211, 255, 0.08);
    animation: rise 12s linear infinite;
}

.hero-bubbles .bubble:nth-child(1) { left: 5%; width: 40px; height: 40px; animation-duration: 14s; }
.hero-bubbles .bubble:nth-child(2) { left: 15%; width: 60px; height: 60px; animation-duration: 18s; animation-delay: 2s; }
.hero-bubbles .bubble:nth-child(3) { left: 30%; width: 25px; height: 25px; animation-duration: 10s; animation-delay: 4s; }
.hero-bubbles .bubble:nth-child(4) { left: 50%; width: 50px; height: 50px; animation-duration: 16s; animation-delay: 1s; }
.hero-bubbles .bubble:nth-child(5) { left: 65%; width: 35px; height: 35px; animation-duration: 12s; animation-delay: 3s; }
.hero-bubbles .bubble:nth-child(6) { left: 75%; width: 70px; height: 70px; animation-duration: 20s; animation-delay: 5s; }
.hero-bubbles .bubble:nth-child(7) { left: 85%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 6s; }
.hero-bubbles .bubble:nth-child(8) { left: 92%; width: 45px; height: 45px; animation-duration: 15s; animation-delay: 2.5s; }

.cta-banner-bubbles .bubble:nth-child(1) { left: 10%; width: 50px; height: 50px; animation-duration: 14s; }
.cta-banner-bubbles .bubble:nth-child(2) { left: 25%; width: 30px; height: 30px; animation-duration: 10s; animation-delay: 3s; }
.cta-banner-bubbles .bubble:nth-child(3) { left: 45%; width: 60px; height: 60px; animation-duration: 18s; animation-delay: 1s; }
.cta-banner-bubbles .bubble:nth-child(4) { left: 70%; width: 40px; height: 40px; animation-duration: 13s; animation-delay: 4s; }
.cta-banner-bubbles .bubble:nth-child(5) { left: 88%; width: 35px; height: 35px; animation-duration: 16s; animation-delay: 2s; }

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-600px) scale(0.5); opacity: 0; }
}

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

/* ============================================
   INFO CARD GRID
   ============================================ */
.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.info-card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 24px;
    border-left: 3px solid var(--coral);
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 211, 255, 0.15);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 211, 255, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.info-card-title {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 12px;
}

.info-card-title a {
    color: var(--accent);
    text-decoration: none;
}

.info-card-title a:hover {
    color: var(--primary);
}

.info-card-description {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    display: flex;
    flex-direction: column;
    gap: 60px;
    background: rgba(15, 27, 45, 0.7);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-source {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 60px 0;
    text-align: center;
    overflow: clip;
    background: linear-gradient(135deg, #003547 0%, #004d5c 50%, #003547 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

.cta-banner-heading {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
}

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

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--foreground);
    list-style: none;
    gap: 16px;
}

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

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

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

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

.faq-toggle::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.faq-toggle::after {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

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

.faq-answer {
    padding: 0 0 16px;
    border-left: 3px solid var(--coral);
    padding-left: 16px;
    margin-left: 4px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

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

/* Callout box */
.callout {
    border-left: 4px solid var(--coral);
    background: rgba(255, 107, 107, 0.08);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout-info {
    border-left-color: var(--primary);
    background: rgba(0, 211, 255, 0.08);
}

.callout-gold {
    border-left-color: var(--accent);
    background: rgba(255, 215, 0, 0.08);
}

.callout-title {
    display: block;
    color: var(--accent);
    font-size: 17px;
    margin-bottom: 8px;
}

.callout-text {
    color: var(--foreground);
    font-size: 16px;
    margin-bottom: 0;
}

/* TL;DR box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}

.tldr-title {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 16px;
}

.tldr-list {
    list-style: none;
    padding: 0;
}

.tldr-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 16px;
}

.tldr-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
    top: 4px;
}

/* Pull quote */
.pull-quote {
    border: none;
    border-left: 4px solid var(--accent);
    padding: 20px 0 20px 28px;
    margin: 32px 0;
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.4;
    color: var(--accent);
    font-style: italic;
}

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

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.trust-badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted-foreground);
    text-align: center;
    min-width: 0;
}

/* Comparison table */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    outline: none;
}

.table-wrapper:focus-visible {
    box-shadow: 0 0 0 2px var(--primary);
    border-radius: var(--radius-md);
}

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

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

.comparison-table th {
    background: var(--secondary);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    color: var(--foreground);
}

.comparison-table .col-highlight {
    background: rgba(255, 215, 0, 0.08);
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 211, 255, 0.05);
}

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

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

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

.footer-heading {
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
}

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

.footer-sitemap-link {
    color: var(--muted-foreground) !important;
}

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

.footer-license {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 12px;
    color: var(--muted-foreground);
}

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

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

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (min-width: 768px) {
    .primary-nav {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

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

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

    .stat-block {
        flex-direction: row;
        justify-content: space-around;
        gap: 24px;
    }

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

    .cta-banner {
        padding: 100px 0;
    }

    .stat-number {
        font-size: 40px;
    }
}

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

    .hero {
        padding: 24px 0 72px;
        scroll-margin-top: 0;
    }

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

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    .info-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-number {
        font-size: 48px;
    }

    .cta-banner-heading {
        font-size: 32px;
    }

    .info-card {
        padding: 32px;
    }

    .stat-block {
        padding: 32px;
    }

    .faq-accordion {
        padding: 32px;
    }

    .hero-mascot {
        max-width: 500px;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 32px;
    }
}

/* ============================================
   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(--primary);
    outline-offset: 2px;
}

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

/* ============================================
   MISC - Section headings & article
   ============================================ */
article h2 {
    margin-bottom: 20px;
    scroll-margin-top: calc(var(--header-height) + 32px);
}

article h2:not(:first-child) {
    margin-top: 40px;
}

article p {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

article p {
    max-width: 800px;
}

.section-heading {
    text-align: center;
    margin-bottom: 32px;
    margin-top: 0;
    color: var(--accent);
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--muted-foreground);
    font-size: 17px;
}

.section-subtext a {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    color: var(--primary);
}

/* Bonus display in hero */
.bonus-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 20px 0;
    padding: 16px 28px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

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

.bonus-detail {
    font-size: 14px;
    color: var(--foreground);
    font-weight: 700;
}

/* Numbered list for steps */
.step-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.step-list li {
    counter-increment: step;
    position: relative;
    padding-left: 60px;
    margin-bottom: 24px;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #003d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

/* Eligible slots grid */
.slot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0;
}

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

.slot-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
    min-width: 0;
}

.slot-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.slot-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 8px;
}

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

/* Leaderboard */
.leaderboard {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.leaderboard-rank {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.leaderboard-name {
    font-weight: 700;
    color: var(--foreground);
}

.leaderboard-amount {
    font-weight: 700;
    color: var(--primary);
}

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

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

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.sitemap-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    transition: border-color var(--transition), transform var(--transition);
}

.sitemap-item:hover {
    border-left-color: var(--accent);
    transform: translateY(-2px);
}

.sitemap-item h2 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sitemap-item h2 a {
    color: var(--accent);
    text-decoration: none;
}

.sitemap-item h2 a:hover {
    color: var(--primary);
}

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

/* ============================================
   EXCLUSIVE HIGHLIGHT (Le Fugu)
   ============================================ */
.exclusive-highlight {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    background: var(--card);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.exclusive-highlight-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
}

.exclusive-highlight-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 8px 30px rgba(255, 215, 0, 0.2));
}

.exclusive-highlight-content {
    text-align: center;
    width: 100%;
}

.exclusive-title {
    font-size: 28px;
    color: var(--accent);
    margin: 12px 0 16px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.exclusive-description {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.exclusive-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.exclusive-features li {
    padding: 8px 0;
    color: var(--foreground);
    font-size: 15px;
}

@media (min-width: 768px) {
    .exclusive-highlight {
        flex-direction: row;
        text-align: left;
    }

    .exclusive-highlight-content {
        text-align: left;
    }

    .exclusive-features li {
        padding-left: 0;
    }

    .exclusive-title {
        font-size: 32px;
    }
}

/* ============================================
   SLOT CARD ICON
   ============================================ */
.slot-icon {
    font-size: 40px;
    margin-bottom: 12px;
    line-height: 1;
}

