/* ============================================
   GOLISIMO CASINO - DESIGN SYSTEM
   Dark football-stadium aesthetic with lime accents
   Anton display + Inter Tight body
   ============================================ */

/* ============================================
   DESIGN TOKENS - Dark theme (default, no toggle)
   ============================================ */
:root {
    --background: #0a0f0a;
    --background-alt: #0d130d;
    --foreground: #e8f0e8;
    --card: #141c14;
    --card-elevated: #1a2418;
    --card-foreground: #e8f0e8;
    --primary: #84cc16;
    --primary-foreground: #0a0f0a;
    --secondary: #1e293b;
    --secondary-foreground: #e8f0e8;
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --accent: #bef264;
    --accent-foreground: #0a0f0a;
    --border: #2a3a2a;
    --border-light: #334155;
    --input: #1e293b;
    --ring: #84cc16;

    /* Semantic */
    --lime-gradient: linear-gradient(135deg, #84cc16 0%, #bef264 50%, #c6e84e 100%);
    --lime-glow: 0 0 24px rgba(132, 204, 22, 0.25);
    --lime-glow-strong: 0 0 40px rgba(132, 204, 22, 0.35);

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

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 80px;

    /* Layout */
    --max-width: 1180px;
    --header-height: 68px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 250ms ease-out;
    --transition-fast: 150ms ease-out;
}

/* Keep .dark identical for compatibility */
.dark {
    --background: #0a0f0a;
    --background-alt: #0d130d;
    --foreground: #e8f0e8;
    --card: #141c14;
    --card-elevated: #1a2418;
    --card-foreground: #e8f0e8;
    --primary: #84cc16;
    --primary-foreground: #0a0f0a;
    --secondary: #1e293b;
    --secondary-foreground: #e8f0e8;
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --accent: #bef264;
    --accent-foreground: #0a0f0a;
    --border: #2a3a2a;
    --border-light: #334155;
    --input: #1e293b;
    --ring: #84cc16;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    min-height: 100vh;
    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;
}

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

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

ul, ol {
    list-style: none;
}

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

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

h1 {
    font-size: 32px;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 26px;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 20px;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: var(--space-lg);
    overflow-wrap: break-word;
}

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

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

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

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

.text-lime {
    background: var(--lime-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

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

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

.section-full-bleed {
    width: 100%;
}

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

.section-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

@media (min-width: 1024px) {
    h1 { font-size: 52px; }
    h2 { font-size: 38px; }
    h3 { font-size: 26px; }
    .section { padding: var(--space-3xl) 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 44px;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 400;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--lime-glow);
    transform: translateY(-1px);
}

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

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* ============================================
   LOGO MARK
   ============================================ */
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--lime-gradient);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-size: 24px;
    flex-shrink: 0;
}

.logo-mark-sm {
    width: 32px;
    height: 32px;
    font-size: 20px;
}

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

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

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

.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.01em;
    color: var(--foreground);
    text-transform: uppercase;
}

.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-cta-group {
    display: none;
    align-items: center;
    gap: var(--space-sm);
}

.nav-cta-login,
.nav-cta-register {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 14px;
}

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

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

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

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

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

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

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

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
    .nav-cta-group {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--background);
    z-index: 999;
    padding: var(--space-lg);
    overflow-y: auto;
    gap: var(--space-lg);
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

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

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 18px;
    padding: var(--space-md) 0;
    color: var(--foreground);
}

.primary-nav.is-open .nav-link::after {
    display: none;
}

.primary-nav.is-open .nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.primary-nav.is-open .nav-cta-login,
.primary-nav.is-open .nav-cta-register {
    min-height: 48px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
}

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

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

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

.footer-brand .brand-name {
    font-size: 18px;
}

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

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

.footer-heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: var(--space-md);
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

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

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

.payment-methods-footer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all var(--transition-fast);
}

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

.responsible-gaming {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 18px;
    flex-shrink: 0;
}

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

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

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

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

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

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    overflow: clip;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 10, 0.92) 0%, rgba(10, 15, 10, 0.75) 50%, rgba(10, 15, 10, 0.85) 100%);
    z-index: 1;
}

.hero-beam {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(180deg, transparent 0%, rgba(132, 204, 22, 0.08) 40%, rgba(190, 242, 100, 0.12) 50%, rgba(132, 204, 22, 0.08) 60%, transparent 100%);
    transform: rotate(15deg);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: var(--space-lg);
    max-width: 700px;
}

.hero-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 600px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.hero-micro-copy {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

@media (min-width: 1024px) {
    .hero {
        min-height: 640px;
        padding: 120px 0;
    }
    .hero h1 {
        font-size: 52px;
    }
    .hero-subtext {
        font-size: 19px;
    }
}

/* ============================================
   PROMO CARDS
   ============================================ */
.promo-card {
    background: var(--card-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.promo-card:hover {
    transform: scale(1.02);
    box-shadow: var(--lime-glow);
    border-color: var(--primary);
}

.promo-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(132, 204, 22, 0.15);
    color: var(--accent);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.promo-amount {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
    background: var(--lime-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.promo-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
}

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

.promo-cta {
    margin-top: 4px;
    align-self: flex-start;
    min-height: 44px;
    padding: 10px 24px;
    font-size: 14px;
}

@media (min-width: 640px) {
    .promo-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .promo-amount {
        font-size: 36px;
    }
    .promo-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-lg);
    }
    .promo-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}

/* ============================================
   STAT BLOCKS
   ============================================ */
.stat-block {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    min-width: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    background: var(--lime-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 4px;
}

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

.stat-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 20px;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 48px;
    }
    .stat-row {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    .stat-row-3 .stat-block,
    .stat-row-4 .stat-block,
    .stat-row-5 .stat-block {
        flex: 1;
    }
    .stat-row .stat-block + .stat-block {
        border-left: 1px solid var(--border);
    }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner-section {
    position: relative;
    width: 100%;
    overflow: clip;
    background: var(--background-alt);
    padding: 48px 0;
    text-align: center;
}

.cta-beam {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: linear-gradient(180deg, transparent 0%, rgba(132, 204, 22, 0.1) 40%, rgba(190, 242, 100, 0.15) 50%, rgba(132, 204, 22, 0.1) 60%, transparent 100%);
    transform: rotate(12deg);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.cta-heading {
    font-size: 26px;
    color: var(--foreground);
    margin-bottom: var(--space-lg);
}

.cta-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

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

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

@media (min-width: 1024px) {
    .cta-banner-section {
        padding: 80px 0;
    }
    .cta-heading {
        font-size: 38px;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    background: var(--card-elevated);
    border: 1px solid var(--border-light);
    border-left: 3px solid transparent;
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color var(--transition);
    overflow: hidden;
}

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

.faq-item summary {
    list-style: none;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    color: var(--foreground);
    user-select: none;
}

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

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

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

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   ============================================ */
.callout {
    background: var(--card-elevated);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.callout-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ============================================
   TL;DR / SUMMARY BOX
   ============================================ */
.summary-box {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.summary-box-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.summary-box ul {
    list-style: none;
    padding: 0;
}

.summary-box li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
    font-size: 15px;
}

.summary-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}

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

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

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

th, td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
    overflow-wrap: break-word;
}

th {
    background: var(--card-elevated);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

td {
    font-size: 15px;
    color: var(--muted-foreground);
}

tbody tr:hover {
    background: rgba(132, 204, 22, 0.05);
}

table col.highlight {
    /* Visual highlight for recommended column */
}

td.col-highlight {
    background: rgba(132, 204, 22, 0.08);
    color: var(--foreground);
    font-weight: 500;
}

@media (max-width: 600px) {
    table {
        min-width: 0;
    }
    th, td {
        padding: var(--space-sm);
        font-size: 13px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ============================================
   TRUST BADGES ROW
   ============================================ */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.trust-badge {
    background: var(--card-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    min-width: 0;
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

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

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

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.two-col-text {
    min-width: 0;
}

.two-col-image {
    min-width: 0;
    border-radius: var(--radius-lg);
}

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

/* ============================================
   VIP LEVEL BADGES
   ============================================ */
.vip-levels {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.vip-level-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-width: 100px;
}

.vip-level-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--lime-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary-foreground);
}

.vip-level-label {
    font-size: 13px;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   PAYMENT METHODS GRID
   ============================================ */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    padding: var(--space-lg);
}

.payment-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 48px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    filter: grayscale(1);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.payment-grid-item:hover {
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--primary);
}

/* ============================================
   FEATURE CARDS GRID
   ============================================ */
.feature-card {
    background: var(--card-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lime-glow);
    border-color: var(--primary);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(132, 204, 22, 0.1);
    border-radius: var(--radius-sm);
}

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

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

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

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

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

/* ============================================
   SECTION HEADINGS WITH KICKER
   ============================================ */
.section-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

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

.section-intro {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 700px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

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

/* Staggered children */
.stagger > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger > .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.stagger > .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.stagger > .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.stagger > .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.stagger > .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }

/* Stat number pulse */
.stat-number.is-visible {
    animation: statPulse 0.5s ease-out;
}

@keyframes statPulse {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.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;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.sitemap-entry {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}

.sitemap-entry:last-child {
    border-bottom: none;
}

.sitemap-entry-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

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

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 374px) {
    body { font-size: 16px; }
    .hero h1 { font-size: 28px; }
    .btn { padding: 10px 20px; font-size: 14px; }
}

/* 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;
    }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
