/* ============================================================
   PeeWee Flag Football – CINEMATIC DARK PREMIUM Design System
   Dark base | Gold accents | Coral energy | Glass morphism
   Scroll animations | Particles | Counters | Marquee
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-elevated: #1e1e1e;

  --gold-400: #FFD700;
  --gold-500: #F5C518;
  --gold-600: #D4A017;
  --gold-glow: rgba(255, 215, 0, 0.15);

  --coral: #E8614D;
  --coral-dark: #D14F3D;
  --coral-light: #F07A68;

  --green: #00C853;
  --green-400: #00E676;
  --green-light: #69F0AE;

  --navy: #0a0a0a;
  --navy-dark: #050505;
  --navy-light: #1a1a1a;

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.35);
  --text-inverse: #0a0a0a;

  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.04);
  --border-strong: rgba(255,255,255,0.15);
  --border-gold: rgba(255,215,0,0.3);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --max-width: 1240px;
  --nav-height: 72px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 24px rgba(255,215,0,0.2);
  --shadow-coral: 0 4px 24px rgba(232,97,77,0.3);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ========== GRADIENT TEXT ========== */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--coral) 50%, var(--gold-400) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ========== GLOW EFFECTS ========== */
.glow-gold { box-shadow: 0 0 30px rgba(255,215,0,0.15), 0 0 60px rgba(255,215,0,0.05); }
.glow-coral { box-shadow: 0 0 30px rgba(232,97,77,0.15), 0 0 60px rgba(232,97,77,0.05); }

/* ========== PARTICLE CANVAS ========== */
#particleCanvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* --- Video Intro Overlay --- */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 1.2s ease; pointer-events: auto;
}
.intro-overlay.fading { opacity: 0; pointer-events: none; }
.intro-overlay.hidden { display: none; }
.intro-video { width: 100%; height: 100%; object-fit: cover; }
.intro-skip {
  position: absolute; bottom: 40px; right: 40px;
  padding: 12px 28px; border-radius: var(--radius-full);
  border: 2px solid var(--gold-400); background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--gold-400); font-size: var(--text-sm); font-weight: 700;
  font-family: var(--font-sans); text-transform: uppercase;
  letter-spacing: 0.12em; cursor: pointer; transition: all 0.3s;
}
.intro-skip:hover { background: var(--gold-400); color: #000; }

/* ========== LAYOUT ========== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-4xl) 0; }
.section--sm { padding: var(--space-3xl) 0; }

/* ========== TYPOGRAPHY ========== */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #fff;
}

.heading-sm {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}

.text-lg { font-size: var(--text-lg); line-height: 1.7; }
.text-base { font-size: var(--text-base); line-height: 1.6; }
.text-sm { font-size: var(--text-sm); line-height: 1.5; }
.text-xs { font-size: var(--text-xs); line-height: 1.5; }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ========== SECTION HEADER ========== */
.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-header .overline {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  font-size: var(--text-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold-400);
  margin-bottom: var(--space-md);
  background: rgba(255,215,0,0.08); padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,215,0,0.15);
}
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p {
  color: var(--text-secondary); font-size: var(--text-lg);
  max-width: 60ch; margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-sm); font-family: var(--font-sans); font-weight: 700;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.3s var(--ease-out-expo); text-decoration: none;
  white-space: nowrap; line-height: 1; text-transform: uppercase;
  letter-spacing: 0.08em; position: relative; overflow: hidden;
}
.btn:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 2px; }

.btn--lg { font-size: var(--text-base); padding: 18px 36px; min-height: 56px; }
.btn--md { font-size: var(--text-sm); padding: 14px 28px; min-height: 48px; }
.btn--sm { font-size: var(--text-xs); padding: 10px 20px; min-height: 40px; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #000; font-weight: 800;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.5);
  filter: brightness(1.1);
}

.btn--secondary {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn--green {
  background: linear-gradient(135deg, var(--green), #00A844);
  color: #fff; font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
}
.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,200,83,0.5);
}

.btn--ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn--donate {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff; font-size: var(--text-base); padding: 18px 40px;
  min-height: 58px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-coral);
}
.btn--donate:hover { transform: translateY(-3px); filter: brightness(1.15); }

.btn--login {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: var(--text-xs); padding: 8px 18px; min-height: 36px;
}
.btn--login:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ========== CARDS ========== */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-xl);
  transition: all 0.4s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.03) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,215,0,0.05);
}
.card:hover::before { opacity: 1; }
.card--elevated { box-shadow: var(--shadow-md); }
.card--no-hover:hover { transform: none; box-shadow: none; border-color: var(--border); }
.card--no-hover::before { display: none; }

.card h3 {
  font-family: var(--font-sans); font-size: var(--text-lg); font-weight: 800;
  margin-bottom: var(--space-sm); color: #fff; text-transform: uppercase;
  letter-spacing: 0.02em; position: relative;
}
.card p { color: var(--text-secondary); font-size: var(--text-sm); position: relative; }
.card ul { margin-top: var(--space-md); position: relative; }
.card ul li {
  position: relative; padding-left: 20px; margin-bottom: var(--space-sm);
  color: var(--text-secondary); font-size: var(--text-sm);
}
.card ul li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400);
}

.card__icon {
  font-size: 2rem; margin-bottom: var(--space-md);
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.15);
  position: relative;
}
.card__icon--green {
  background: rgba(0,200,83,0.08); border-color: rgba(0,200,83,0.15);
}
.card__icon--blue {
  background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.15);
}

/* ========== BADGE ========== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-xs); font-weight: 700; padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.1);
}
.badge--green { background: rgba(0,200,83,0.1); color: var(--green-400); border-color: rgba(0,200,83,0.2); }
.badge--coral { background: rgba(232,97,77,0.1); color: var(--coral-light); border-color: rgba(232,97,77,0.2); }
.badge--gold { background: rgba(255,215,0,0.08); color: var(--gold-400); border-color: rgba(255,215,0,0.15); }

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

/* ========== NAVIGATION (Glassmorphism) ========== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.site-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: var(--space-lg);
}
.site-nav__brand {
  display: flex; align-items: center; gap: var(--space-md); flex-shrink: 0;
}
.site-nav__brand img {
  width: 220px; height: 80px; border-radius: 0;
  object-fit: contain; border: none;
  box-shadow: none;
  filter: brightness(1.8) contrast(1.2);
}
.site-nav__brand-text {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.3rem; line-height: 1; color: var(--gold-400);
  text-transform: uppercase; letter-spacing: 0.02em;
}
.site-nav__brand-sub {
  font-size: var(--text-xs); color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}

.site-nav__links { display: flex; align-items: center; gap: 2px; }
.site-nav__link {
  font-size: var(--text-sm); font-weight: 600; color: rgba(255,255,255,0.7);
  padding: 8px 14px; border-radius: var(--radius-sm); transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.site-nav__link:hover, .site-nav__link--active { color: var(--gold-400); }

.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 4px; }
.nav-dropdown__trigger::after {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; opacity: 0.5;
}
.nav-dropdown__menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); min-width: 220px; padding: var(--space-sm);
  background: rgba(20,20,20,0.95); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  z-index: 50; margin-top: 8px;
}
.nav-dropdown:hover .nav-dropdown__menu { display: block; }
.nav-dropdown__item {
  display: block; padding: 10px 14px; font-size: var(--text-sm);
  color: rgba(255,255,255,0.7); border-radius: var(--radius-sm);
  transition: all 0.15s; font-weight: 600;
}
.nav-dropdown__item:hover { color: var(--gold-400); background: rgba(255,215,0,0.06); }

.site-nav__actions { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; }
.site-nav__hamburger {
  display: none; background: none; border: none;
  color: #fff; font-size: 24px; cursor: pointer; padding: 8px;
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); z-index: 99;
  backdrop-filter: blur(20px);
  overflow-y: auto; padding: var(--space-lg);
}
.mobile-nav.is-open { display: block; }
.mobile-nav__link {
  display: block; padding: 16px 0; font-size: var(--text-lg); font-weight: 700;
  color: rgba(255,255,255,0.8); border-bottom: 1px solid var(--border);
  transition: color 0.15s; text-transform: uppercase; letter-spacing: 0.04em;
}
.mobile-nav__link:hover { color: var(--gold-400); }
.mobile-nav__actions {
  display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-lg);
}

/* ========== HERO (Cinematic Full-Screen) ========== */
.hero {
  position: relative; padding: 0;
  min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.5s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 30%,
    rgba(0,0,0,0.6) 70%,
    rgba(10,10,10,1) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 800px; padding: var(--space-4xl) 0;
}
.hero h1 {
  margin-bottom: var(--space-lg); color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero__desc {
  font-size: var(--text-xl); color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl); max-width: 55ch;
  line-height: 1.7; font-weight: 400;
}
.hero__actions {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}
.hero__badges { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero__badges .badge {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.hero__badges .badge--green {
  background: rgba(0,200,83,0.15); color: var(--green-400);
  border-color: rgba(0,200,83,0.3);
}

/* Hero Slider Nav */
.hero__dots {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 12px; z-index: 3;
}
.hero__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.4s;
}
.hero__dot.active { background: var(--gold-400); border-color: var(--gold-400); transform: scale(1.3); box-shadow: 0 0 12px rgba(255,215,0,0.4); }
.hero__nav {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%); background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  width: 52px; height: 52px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: #fff;
  transition: all 0.3s; font-size: 22px;
  backdrop-filter: blur(8px);
}
.hero__nav:hover { background: rgba(255,215,0,0.15); border-color: var(--gold-400); color: var(--gold-400); }
.hero__nav--prev { left: 24px; }
.hero__nav--next { right: 24px; }

/* ========== STATS COUNTER BAR ========== */
.stats-bar {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg);
  text-align: center;
}
.stats-bar__item { position: relative; }
.stats-bar__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1;
  color: var(--gold-400);
  margin-bottom: var(--space-xs);
}
.stats-bar__label {
  font-size: var(--text-sm); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* ========== TRUST / PARTNER BAR ========== */
.trust-bar {
  display: flex; align-items: center; gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.trust-bar__label {
  font-size: var(--text-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-muted); flex-shrink: 0;
}
.trust-bar__logos { display: flex; align-items: center; gap: var(--space-xl); }
.trust-bar__logo {
  font-size: var(--text-sm); font-weight: 700; color: rgba(255,255,255,0.5);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em;
}
.trust-bar__logo a {
  color: rgba(255,255,255,0.5); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s;
}
.trust-bar__logo a:hover { color: var(--gold-400); }

/* ========== MARQUEE TICKER ========== */
.marquee {
  overflow: hidden; padding: var(--space-lg) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee__track {
  display: flex; gap: var(--space-3xl);
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255,255,255,0.08);
  text-transform: uppercase; white-space: nowrap;
  letter-spacing: 0.05em;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== FEATURE SPLIT (Two-Column) ========== */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-bottom: 1px solid var(--border);
}
.feature-split__item {
  display: flex; flex-direction: column;
}
.feature-split__item:first-child { border-right: 1px solid var(--border); }
.feature-split__img {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
}
.feature-split__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
  filter: brightness(0.85);
}
.feature-split__item:hover .feature-split__img img {
  transform: scale(1.08);
  filter: brightness(1);
}
.feature-split__body { padding: var(--space-xl) var(--space-lg); }
.feature-split__body h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400; text-transform: uppercase; color: #fff;
  margin-bottom: var(--space-md); line-height: 0.95;
}
.feature-split__body p {
  color: var(--text-secondary); font-size: var(--text-sm);
  margin-bottom: var(--space-lg); max-width: 45ch;
}

/* ========== PHOTO GALLERY (Hover Zoom) ========== */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md);
}
.gallery__item {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; transition: all 0.4s var(--ease-out-expo);
}
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo); filter: brightness(0.8);
}
.gallery__item:hover img { transform: scale(1.1); filter: brightness(1); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.gallery__item--wide { grid-column: span 2; }

/* ========== TESTIMONIALS (Cinematic) ========== */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
  padding: var(--space-4xl) 0;
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: 'ALL HUSTLE ALL DAY. ALL HUSTLE ALL DAY. ALL HUSTLE ALL DAY. ';
  position: absolute; inset: 0;
  font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400; color: rgba(255,255,255,0.02);
  line-height: 1; text-transform: uppercase;
  word-break: break-all; overflow: hidden;
  display: flex; align-items: center;
}
.testimonial-slider {
  max-width: 800px; margin: 0 auto; text-align: center; position: relative;
}
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial__quote {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff; margin-bottom: var(--space-xl);
  line-height: 1.1; text-transform: uppercase; font-weight: 400;
}
.testimonial__author { margin-bottom: var(--space-sm); }
.testimonial__name { font-weight: 700; font-size: var(--text-sm); color: var(--gold-400); }
.testimonial__role { font-size: var(--text-xs); color: var(--text-muted); }
.testimonial__avatar { display: none; }
.testimonial-dots {
  display: flex; justify-content: center; gap: 12px; margin-top: var(--space-xl);
}
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: all 0.3s;
}
.testimonial-dot.active { background: var(--gold-400); box-shadow: 0 0 10px rgba(255,215,0,0.3); }

/* ========== NEWS CARDS ========== */
.news-feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.news-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-lg);
  transition: all 0.3s var(--ease-out-expo);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.news-card__source {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold-400); margin-bottom: var(--space-sm);
}
.news-card__title {
  font-size: var(--text-lg); font-weight: 800; color: #fff;
  margin-bottom: var(--space-sm); line-height: 1.3;
}
.news-card__excerpt { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }

.news-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid var(--border);
}
.news-meta__timestamp { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; }
.news-meta__refresh {
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.2);
  color: var(--gold-400); font-size: var(--text-xs); font-weight: 700;
  padding: 6px 16px; border-radius: var(--radius-full); cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-sans); transition: all 0.2s;
}
.news-meta__refresh:hover { background: var(--gold-400); color: #000; }

/* ========== DONATE SECTION ========== */
.donate-section {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-2xl); padding: var(--space-3xl);
  text-align: center;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.05) 0%, transparent 60%);
}
.donate-section h2 { margin-bottom: var(--space-md); }
.donate-section p {
  color: var(--text-secondary); font-size: var(--text-lg);
  max-width: 50ch; margin: 0 auto var(--space-xl);
}
.donate-section .payment-icons {
  display: flex; justify-content: center; gap: var(--space-lg);
  margin-top: var(--space-md); font-size: var(--text-sm);
  color: var(--text-muted); font-weight: 600;
}

/* ========== STEPS (Animated Timeline) ========== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl);
  counter-reset: step-counter;
}
.step {
  padding: var(--space-xl); background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  counter-increment: step-counter;
  transition: all 0.4s var(--ease-out-expo); position: relative;
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.step__number {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #000; font-weight: 900;
  font-size: var(--text-lg); margin-bottom: var(--space-md);
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}
.step h3 {
  font-size: var(--text-lg); font-weight: 800; margin-bottom: var(--space-sm);
  color: #fff; text-transform: uppercase;
}
.step p { color: var(--text-secondary); font-size: var(--text-sm); }

/* ========== FAQ ========== */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: var(--space-sm);
  transition: border-color 0.3s;
}
.faq-item:hover, .faq-item.is-open { border-color: var(--border-gold); }
.faq-item__trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--space-md) var(--space-lg);
  background: var(--bg-card); border: none; color: #fff;
  font-size: var(--text-base); font-weight: 700; font-family: var(--font-sans);
  cursor: pointer; text-align: left; transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.faq-item__trigger:hover { background: var(--bg-elevated); }
.faq-item__trigger::after {
  content: '+'; font-size: var(--text-xl); color: var(--gold-400);
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.is-open .faq-item__trigger::after { content: '\2212'; }
.faq-item__content {
  display: none; padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary); font-size: var(--text-sm); line-height: 1.7;
  background: var(--bg-card);
}
.faq-item.is-open .faq-item__content { display: block; }

/* ========== VIDEO EMBED ========== */
.video-embed {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.video-embed video { width: 100%; height: 100%; object-fit: cover; }

/* ========== SOCIAL HUB ========== */
.social-hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.social-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-xl); text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.social-card__icon { font-size: 2rem; margin-bottom: var(--space-md); }
.social-card__name {
  font-size: var(--text-lg); font-weight: 800; color: #fff;
  text-transform: uppercase; margin-bottom: var(--space-sm);
}
.social-card__handle { font-size: var(--text-sm); color: var(--text-muted); }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-2xl); padding: var(--space-3xl); text-align: center;
  position: relative; overflow: hidden;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.06) 0%, transparent 60%);
}
.cta-banner h2 { color: #fff; margin-bottom: var(--space-md); }
.cta-banner p {
  color: var(--text-secondary); font-size: var(--text-lg);
  max-width: 50ch; margin: 0 auto var(--space-xl);
}
.cta-banner__actions {
  display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  padding: var(--space-3xl) 0; text-align: center;
  border-top: 1px solid var(--border);
}
.partners-section h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase; color: #fff; margin-bottom: var(--space-xl);
}
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3xl); flex-wrap: wrap;
}
.partners-logos a {
  color: rgba(255,255,255,0.4); font-weight: 700; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: 0.04em;
  transition: all 0.3s;
}
.partners-logos a:hover { color: var(--gold-400); }

/* ========== FOOTER ========== */
.site-footer {
  background: #050505; padding: var(--space-3xl) 0 var(--space-xl);
  color: #fff; border-top: 1px solid var(--border);
}
.site-footer__grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl); margin-bottom: var(--space-3xl);
}
.site-footer__brand {
  display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md);
}
.site-footer__brand img {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,215,0,0.3);
}
.site-footer__brand-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.2rem; color: var(--gold-400); text-transform: uppercase;
}
.site-footer__desc { font-size: var(--text-sm); color: rgba(255,255,255,0.4); max-width: 30ch; line-height: 1.6; }
.site-footer__heading {
  font-size: var(--text-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.3); margin-bottom: var(--space-md);
}
.site-footer__link {
  display: block; font-size: var(--text-sm); color: rgba(255,255,255,0.5);
  padding: 4px 0; transition: color 0.2s;
}
.site-footer__link:hover { color: var(--gold-400); }
.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.06);
  font-size: var(--text-xs); color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: var(--space-md);
}
.site-footer__socials { display: flex; gap: var(--space-md); align-items: center; }
.site-footer__socials a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.site-footer__socials a:hover { color: var(--gold-400); }

/* ========== PAGE HEADER (Sub-pages) ========== */
.page-header {
  padding: var(--space-4xl) 0 var(--space-3xl);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .overline {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  font-size: var(--text-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold-400); margin-bottom: var(--space-md);
}
.page-header h1 { margin-bottom: var(--space-md); position: relative; }
.page-header p { color: var(--text-secondary); font-size: var(--text-lg); max-width: 60ch; position: relative; }
.page-header__actions { display: flex; gap: var(--space-md); margin-top: var(--space-xl); flex-wrap: wrap; position: relative; }

/* ========== FEATURE ROW ========== */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl);
  align-items: center; padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.feature-row:last-child { border-bottom: none; }
.feature-row--reverse .feature-row__content { order: 2; }
.feature-row--reverse .feature-row__visual { order: 1; }
.feature-row__content h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400; margin-bottom: var(--space-md); color: #fff; text-transform: uppercase;
}
.feature-row__content p { color: var(--text-secondary); font-size: var(--text-base); margin-bottom: var(--space-lg); }
.feature-row__visual {
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 4/3;
}
.feature-row__visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: filter 0.4s; }
.feature-row__visual:hover img { filter: brightness(1); }

/* ========== DOWNLOADS ========== */
.dl-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.dl-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); padding: var(--space-md) var(--space-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); flex-wrap: wrap; transition: border-color 0.3s;
}
.dl-row:hover { border-color: var(--border-gold); }
.dl-row__info strong { display: block; font-size: var(--text-sm); font-weight: 700; color: #fff; }
.dl-row__info span { font-size: var(--text-xs); color: var(--text-muted); }

/* ========== STAT ========== */
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-display); font-size: var(--text-5xl);
  font-weight: 400; line-height: 1; color: var(--gold-400);
}
.stat__label {
  font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-xs);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}

/* ========== SKILLS FEATURE ========== */
.skills-feature {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; background: var(--bg-card);
}
.skills-feature__img { overflow: hidden; }
.skills-feature__img img { width: 100%; height: 100%; object-fit: cover; }
.skills-feature__body {
  padding: var(--space-3xl); display: flex; flex-direction: column; justify-content: center;
}
.skills-feature__body h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase; color: #fff; margin-bottom: var(--space-md); line-height: 0.95;
}
.skills-feature__body p { color: var(--text-secondary); margin-bottom: var(--space-lg); }

/* ========== GLOBE / LANGUAGE ========== */
.globe-wrapper { position: relative; }
.globe-btn {
  background: none; border: none; cursor: pointer; padding: 8px;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.globe-btn:hover { color: var(--gold-400); }
.globe-btn svg { width: 20px; height: 20px; }
.globe-dropdown {
  display: none; position: absolute; top: 100%; right: 0;
  min-width: 160px; padding: var(--space-sm);
  background: rgba(20,20,20,0.95); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px); z-index: 50; margin-top: 8px;
}
.globe-dropdown.is-open { display: block; }
.globe-dropdown__item {
  display: block; width: 100%; padding: 8px 12px; font-size: var(--text-sm);
  color: rgba(255,255,255,0.7); background: none; border: none; border-radius: var(--radius-sm);
  cursor: pointer; text-align: left; font-family: var(--font-sans); transition: all 0.15s;
}
.globe-dropdown__item:hover { color: var(--gold-400); background: rgba(255,215,0,0.06); }
.globe-dropdown__item.active { color: var(--gold-400); font-weight: 700; }
.globe-dropdown__divider {
  height: 1px; background: var(--border); margin: var(--space-sm) 0;
}
.globe-dropdown__item--change { color: var(--text-muted); font-style: italic; }

/* ========== LAZY LOAD ========== */
img[loading="lazy"] { opacity: 0; transition: opacity 0.5s ease; }
img[loading="lazy"].loaded, img[loading="lazy"][complete] { opacity: 1; }

/* ========== 3D WHEEL (preserved) ========== */
body.zooming-out { overflow: hidden; background-color: var(--bg); }
body.zooming-out main, body.zooming-out .site-nav, body.zooming-out .hero,
body.zooming-out .page-header, body.zooming-out .site-footer, body.zooming-out .trust-bar {
  transform: scale(0.6); opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none;
}
.nav-wheel-wrapper {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; perspective: 1200px; transition: opacity 0.4s ease;
}
.nav-wheel-wrapper.active { opacity: 1; pointer-events: auto; }
.nav-wheel-scene { width: 280px; height: 160px; position: relative; transform: scale(0.5); transition: transform 1s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease; }
.nav-wheel-scene.zoom-in { transform: scale(6); opacity: 0; }
.nav-wheel { width: 100%; height: 100%; position: absolute; transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.wheel-panel {
  position: absolute; width: 280px; height: 160px; left: 0; top: 0;
  background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5); backface-visibility: hidden;
  text-align: center; font-family: var(--font-display); text-transform: uppercase;
}
.wheel-panel span { font-size: 13px; color: var(--text-muted); margin-top: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ========== OLYMPIC BADGE ========== */
.olympic-badge {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  padding: 10px 20px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(232,97,77,0.1) 100%);
  border: 1px solid rgba(255,215,0,0.2);
  font-size: var(--text-xs); font-weight: 700; color: var(--gold-400);
  text-transform: uppercase; letter-spacing: 0.12em;
  animation: pulseBadge 3s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.1); }
  50% { box-shadow: 0 0 20px 4px rgba(255,215,0,0.15); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .news-feed { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .feature-row { grid-template-columns: 1fr; gap: var(--space-xl); }
  .feature-row--reverse .feature-row__content,
  .feature-row--reverse .feature-row__visual { order: unset; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split__item:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .skills-feature { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; --space-4xl: 64px; --space-3xl: 48px; }
  .container { padding: 0 var(--space-md); }
  .site-nav__links, .site-nav__actions { display: none; }
  .site-nav__hamburger { display: flex; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .hero { min-height: 100vh; }
  .hero__content { padding: var(--space-3xl) 0 var(--space-2xl); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: var(--space-2xl) var(--space-lg); }
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; }
  .donate-section { padding: var(--space-2xl) var(--space-lg); }
  .news-feed { grid-template-columns: 1fr; }
  .social-hub { grid-template-columns: 1fr; }
  .hero__nav { display: none; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
}

@media (max-width: 480px) {
  .heading-xl { font-size: 3rem; }
  .hero__badges { flex-direction: column; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
}

/* ========== COUNTRY SELECTOR OVERRIDES (dark) ========== */
.country-selector {
  background: var(--bg) !important;
}
.cs-header__title { color: #fff !important; }
.cs-header__subtitle { color: var(--text-muted) !important; }
.cs-back { color: var(--gold-400) !important; }
.cs-continent-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: #fff !important;
}
.cs-continent-card:hover {
  border-color: var(--border-gold) !important;
}
.cs-continent-card__name { color: #fff !important; }
.cs-continent-card__count { color: var(--text-muted) !important; }
.cs-country-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
}
.cs-country-card:hover {
  border-color: var(--border-gold) !important;
}
.cs-country-card__name { color: #fff !important; }
.cs-country-card__name-en { color: var(--text-muted) !important; }
