/* ============================================
   MARTIN CASINO - Design System
   Ultra-luxury dark theme with sapphire & tangerine
   Single theme (no toggle) - dark only
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Backgrounds */
    --background: #0a0a12;
    --foreground: #f5f3ef;
    --card: #131322;
    --card-foreground: #f5f3ef;
    --popover: #131322;
    --popover-foreground: #f5f3ef;

    /* Brand colors */
    --primary: #0e94f9;
    --primary-foreground: #0a0a12;
    --secondary: #1a1a3e;
    --secondary-foreground: #e2e8f0;
    --muted: #2a2a45;
    --muted-foreground: #9ca3af;
    --accent: #c2410c;
    --accent-foreground: #ffffff;
    --destructive: #ef4444;
    --destructive-foreground: #000000;

    /* Borders & inputs */
    --border: #2e2e4a;
    --input: #1a1a3e;
    --ring: #0e94f9;

    /* Velvet textures */
    --velvet-sapphire: radial-gradient(ellipse at 50% 0%, #1a1a4e 0%, #0a0a12 65%);
    --velvet-deep: radial-gradient(ellipse at 50% 50%, #15154a 0%, #0a0a12 70%);
    --velvet-orange-glow: radial-gradient(ellipse at 50% 100%, rgba(255, 140, 26, 0.12) 0%, transparent 55%);

    /* Typography */
    --font-heading: "Cinzel", serif;
    --font-body: "Outfit", sans-serif;

    /* Spacing scale (8px base) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 64px;
    --space-2xl: 120px;
    --section-padding-y: 70px;
    --component-padding: 24px;

    /* Layout */
    --container-max: 1200px;
    --header-height: 60px;

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

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

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow-blue: 0 0 24px rgba(14, 148, 249, 0.25);
    --shadow-glow-orange: 0 0 24px rgba(255, 140, 26, 0.3);
    --shadow-accent: 0 4px 20px rgba(255, 140, 26, 0.3);
}

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

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

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

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

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

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

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

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

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

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 0 0 var(--radius-md) 0;
    transition: top var(--transition);
}

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

/* ============================================
   TYPOGRAPHY
   Cinzel for headings - tight letter-spacing
   Outfit for body - 1.6 line-height
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
    font-weight: 700;
}

h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 24px;
    font-weight: 700;
}

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

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

p {
    line-height: 1.6;
    color: var(--foreground);
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container-1200 {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-full-bleed {
    width: 100%;
    position: relative;
    overflow: clip;
}

section {
    overflow: clip;
}

.section {
    padding: var(--section-padding-y) 0;
    position: relative;
    overflow: clip;
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header - opaque background (no backdrop-filter on mobile)
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.98);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--space-sm);
}

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

.site-brand .logo {
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

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

.mobile-toggle:hover {
    background: var(--secondary);
}

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

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

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

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

/* Primary nav - mobile drawer */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    padding: var(--space-md);
    gap: var(--space-xs);
}

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

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

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

.nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

/* Footer payment badges */
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    min-height: 28px;
}

.pay-visa { background: #1a1f71; color: #fff; }
.pay-mc { background: #252525; color: #fff; }
.pay-skrill { background: #7d2a8e; color: #fff; }
.pay-btc { background: #8a4d00; color: #fff; }
.pay-eth { background: #1c1c2e; color: #a9b8f5; }
.pay-usdt { background: #19684e; color: #fff; }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

.footer-license {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.license-badge {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
}

.age-badge {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
}

.footer-disclaimer,
.footer-copyright {
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.5;
}

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

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

.btn-accent {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(255, 140, 26, 0.2);
}

.btn-accent .hero-micro,
.hero-cta-group .hero-micro {
    color: var(--muted-foreground);
}

.btn-accent:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover), var(--shadow-glow-orange);
}

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

.btn-ghost:hover {
    background: var(--secondary);
    border-color: var(--primary);
    transform: scale(1.05);
}

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

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--component-padding);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
}

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

.card-featured {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(255, 140, 26, 0.15);
}

.card-featured:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover), var(--shadow-glow-orange);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.card h3 {
    margin-bottom: var(--space-sm);
}

.card p {
    color: var(--muted-foreground);
    font-size: 15px;
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

/* ============================================
   CTA BANNER COMPONENT
   Full-bleed velvet section with orange edge glow
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--velvet-sapphire);
    padding: var(--section-padding-y) var(--space-md);
    text-align: center;
    overflow: clip;
}

.cta-banner-glow {
    position: absolute;
    inset: 0;
    background: var(--velvet-orange-glow);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cta-heading {
    font-size: 24px;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.cta-subtext {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    max-width: 560px;
}

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

/* ============================================
   PAYMENT GRID COMPONENT
   Responsive grid of brand logos
   ============================================ */
.payment-grid-section {
    padding: var(--space-md) 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.pay-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pay-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.payment-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--muted-foreground);
    font-size: 14px;
}

.trust-item svg {
    color: var(--primary);
}

/* ============================================
   FAQ ACCORDION COMPONENT
   Expandable Q&A with grid-template-rows animation
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-left: 3px solid var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--component-padding);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-question[aria-expanded="true"] {
    border-bottom: 1px solid var(--border);
}

.faq-chevron {
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

/* Grid-template-rows height animation */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition);
    overflow: hidden;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 var(--component-padding);
}

.faq-question[aria-expanded="true"] + .faq-answer .faq-answer-inner {
    padding: var(--component-padding);
}

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

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

/* TL;DR / Summary box */
.tldr-box {
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.tldr-box h2,
.tldr-box h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.tldr-box p {
    color: var(--secondary-foreground);
}

/* Callout / highlight box */
.callout {
    background: var(--card);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) 0;
}

.callout p {
    color: var(--foreground);
    font-size: 15px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-xs);
}

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

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

/* Pull quote */
.pull-quote {
    border: none;
    border-left: 4px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.4;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 14px;
    font-style: normal;
}

/* Comparison table */
.table-wrapper {
    overflow-x: auto;
    margin: var(--space-md) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    min-width: 0;
}

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

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

.comparison-table thead {
    background: var(--secondary);
}

.comparison-table th {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    font-weight: 600;
    color: var(--secondary-foreground);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.comparison-table td {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--border);
    color: var(--foreground);
}

.comparison-table tbody tr:hover {
    background: var(--card);
}

.comparison-table .col-highlight {
    background: rgba(14, 148, 249, 0.05);
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: var(--velvet-sapphire);
    padding: var(--space-xl) 0;
    overflow: clip;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background: var(--velvet-orange-glow);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-size: 28px;
    margin-bottom: var(--space-md);
    color: var(--foreground);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.hero-micro {
    color: #d6d3d1;
    font-size: 14px;
}

.hero-stats {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-label {
    color: var(--muted-foreground);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-mascot-wrapper {
    flex-shrink: 0;
    max-width: 320px;
    z-index: 1;
    opacity: 0.95;
}

.hero-mascot {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(14, 148, 249, 0.3));
}

/* Mobile phone wrapper - phone mockup with blue/orange glow */
.mobile-phone-wrapper {
    position: relative;
}

.mobile-phone-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 140, 26, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.mobile-phone-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 32px rgba(14, 148, 249, 0.4)) drop-shadow(0 4px 16px rgba(255, 140, 26, 0.2));
}

/* ============================================
   BONUS / GAME / VIP CARDS
   ============================================ */
.bonus-section {
    background: var(--velvet-deep);
}

.bonus-cards {
    margin-bottom: var(--space-lg);
}

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

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

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

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.bonus-card .badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

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

/* Game library section */
.game-section {
    background: var(--background);
}

.game-cat-card {
    text-align: center;
}

.game-cat-card .game-cat-icon {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    display: flex;
    justify-content: center;
}

.game-cat-card h3 {
    margin-bottom: var(--space-xs);
}

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

.game-showcase-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    align-items: center;
}

.game-showcase-image {
    flex-shrink: 0;
    max-width: 560px;
}

.mascot-img {
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 8px 24px rgba(14, 148, 249, 0.2));
}

.game-showcase-text {
    flex: 1;
    min-width: 0;
}

.game-showcase-text h3 {
    margin-bottom: var(--space-sm);
    font-size: 22px;
}

.game-showcase-text p {
    margin-bottom: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 16px;
}

/* VIP section */
.vip-section {
    background: var(--velvet-deep);
}

.vip-ladder {
    margin-bottom: var(--space-lg);
}

.vip-tier {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.vip-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-blue);
}

.vip-tier-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

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

.vip-benefits {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.vip-benefits h3 {
    margin-bottom: var(--space-md);
}

.vip-benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
}

.vip-benefit-list li {
    padding-left: 28px;
    position: relative;
    color: var(--foreground);
    font-size: 15px;
}

.vip-benefit-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 16px;
}

/* Payment section */
.payment-section {
    background: var(--velvet-sapphire);
}

/* SEO content section */
.seo-content-section {
    background: var(--background);
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content h2 {
    margin-bottom: var(--space-md);
    text-align: left;
}

.seo-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 20px;
}

.seo-content p {
    margin-bottom: var(--space-md);
    color: var(--muted-foreground);
    font-size: 16px;
    max-width: 72ch;
}

.seo-content strong {
    color: var(--foreground);
}

/* Section heading */
.section-heading {
    font-size: 24px;
    margin-bottom: var(--space-md);
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--muted-foreground);
    max-width: 640px;
    margin: 0 auto var(--space-lg);
    font-size: 17px;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-hero-section {
    background: var(--velvet-deep);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
}

.sitemap-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

.sitemap-mascot {
    flex-shrink: 0;
}

.sitemap-mascot-img {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(14, 148, 249, 0.3));
    border-radius: var(--radius-lg);
}

.sitemap-intro-text {
    max-width: 640px;
}

.sitemap-intro-text h1 {
    margin-bottom: var(--space-md);
}

.sitemap-list-section {
    background: var(--background);
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

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

.sitemap-card-head {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sitemap-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.sitemap-card-head h3 {
    margin: 0;
    font-size: 20px;
}

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

.sitemap-additional {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sitemap-intro {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .sitemap-mascot-img {
        max-width: 200px;
    }

    .sitemap-card-head h3 {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .sitemap-mascot-img {
        max-width: 240px;
    }
}

/* ============================================
   INLINE LINKS (SEO anchors)
   ============================================ */
.inline-link {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(14, 148, 249, 0.3);
    text-underline-offset: 3px;
    transition: color var(--transition), text-decoration-color var(--transition);
}

.inline-link:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

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

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

/* Stagger delays */
.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }

/* ============================================
   RESPONSIVE - Tablet (768px)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --header-height: 68px;
        --section-padding-y: 90px;
        --component-padding: 32px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

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

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

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

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }

    .hero h1 { font-size: 36px; }

    .game-showcase-row {
        flex-direction: row;
        align-items: flex-start;
    }

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

/* ============================================
   RESPONSIVE - Desktop (1024px)
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
        --section-padding-y: 120px;
    }

    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }

    /* Hide mobile toggle, show inline nav */
    .mobile-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        background: transparent;
        padding: 0;
        gap: var(--space-xs);
        overflow: visible;
        z-index: auto;
    }

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

    .nav-actions {
        flex-direction: row;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: var(--space-sm);
    }

    .nav-actions .btn {
        width: auto;
        padding: 10px 24px;
        font-size: 15px;
    }

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

    .payment-grid {
        grid-template-columns: repeat(8, 1fr);
    }

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

    .hero h1 { font-size: 48px; }
    .hero-mascot-wrapper { max-width: 480px; }

    .cta-heading { font-size: 36px; }
    .cta-banner { padding: 120px var(--space-md); }

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

    .hero-stats {
        gap: var(--space-xl);
    }

    .hero-stat-num {
        font-size: 32px;
    }
}

/* ============================================
   RESPONSIVE - Large (1280px)
   ============================================ */
@media (min-width: 1280px) {
    .container-1200 {
        max-width: 1280px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

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

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

a:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}