/* Nintendo Game & Watch - Static Site CSS */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@400;600;700;900&family=Share+Tech+Mono&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --red-light: #e74c3c;
  --cream: #f5f0e8;
  --cream-dark: #ede8dc;
  --charcoal: #1a1a1a;
  --charcoal-mid: #2d2d2d;
  --silver: #8e9eab;
  --gold: #d4a017;
  --lcd-green: #2ecc71;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #8a8a8a;
  --border: rgba(0,0,0,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 7px 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--red);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 16px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  text-decoration: none;
}

.logo-main {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  line-height: 1.4;
}

.logo-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav > a, .dropdown > a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 14px;
  display: block;
  transition: all 0.2s;
  position: relative;
}

.main-nav > a:hover, .dropdown > a:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.main-nav > a.active, .dropdown > a.active {
  color: #fff;
  background: rgba(0,0,0,0.2);
}

.main-nav > a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #fff;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--charcoal);
  min-width: 200px;
  border-top: 3px solid var(--red-light);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.15s;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding-left: 22px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO / BANNER ===== */
.hero {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192,57,43,0.2) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.hero-tag {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid var(--red-light);
  padding: 4px 12px;
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 span { color: var(--red-light); }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Page banner (smaller hero for inner pages) */
.page-banner {
  background: var(--charcoal);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.25) 0%, transparent 70%);
}

.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-banner .breadcrumb {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-banner .breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-banner .breadcrumb a:hover { color: var(--red-light); }

.page-banner h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.page-banner .series-badge {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* ===== SERIES CARDS (home page grid) ===== */
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.series-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.series-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.series-card-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.series-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.series-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.series-card .series-years {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.series-card-body {
  padding: 0 24px 20px;
  flex: 1;
}

.series-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.series-card .game-count {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.series-card .arrow {
  display: inline-block;
  color: var(--red);
  font-size: 18px;
  margin-left: 4px;
  transition: transform 0.2s;
}

.series-card:hover .arrow { transform: translateX(4px); }

/* ===== GAME GRID (series page) ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.game-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.game-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5));
}

.game-card-body {
  padding: 14px 16px;
}

.game-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.game-card .game-meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
}

.game-card .game-model {
  display: inline-block;
  background: var(--cream-dark);
  padding: 2px 6px;
  border-radius: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== GAME DETAIL PAGE ===== */
.game-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.game-detail-main {}

/* Sticky wrapper — the whole sidebar (specs + LCD + button) sticks together */
.game-detail > div:last-child {
  position: sticky;
  top: 90px;
}

.game-specs-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.specs-header {
  background: var(--charcoal);
  color: #fff;
  padding: 14px 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.specs-list {
  padding: 8px 0;
}

.spec-row {
  display: flex;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

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

.spec-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  width: 110px;
  flex-shrink: 0;
  padding-top: 2px;
}

.spec-value {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

.game-description {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.game-description h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.game-description p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.game-description p:last-child { margin-bottom: 0; }

/* Gallery placeholder */
.gallery-placeholder {
  background: var(--charcoal-mid);
  border-radius: 4px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

/* LCD Display decoration */
.lcd-display {
  background: #1a2a1a;
  border: 4px solid #0a1a0a;
  border-radius: 8px;
  padding: 20px;
  font-family: 'Share Tech Mono', monospace;
  color: var(--lcd-green);
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.8;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 0 20px rgba(46,204,113,0.05);
}

/* ===== SECTION TITLES ===== */
.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.section-title .title-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title .title-count {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ===== SERIES INTRO BOX ===== */
.series-intro {
  background: #fff;
  border-radius: 4px;
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.series-intro p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.series-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-box {
  text-align: center;
  padding: 16px 24px;
  background: var(--charcoal);
  border-radius: 4px;
  color: #fff;
  min-width: 100px;
}

.stat-box .stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--red-light);
  display: block;
}

.stat-box .stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.about-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.about-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.about-card p:last-child { margin-bottom: 0; }

.about-card a {
  color: var(--red);
  text-decoration: none;
}

.about-card a:hover { text-decoration: underline; }

.contact-info {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 24px;
  color: #fff;
  margin-top: 24px;
}

.contact-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red-light);
  margin-bottom: 16px;
}

.contact-info p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.contact-info a {
  color: var(--red-light);
  text-decoration: none;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--cream);
}

.timeline-item .year {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  margin-top: 80px;
}

.footer-widgets {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-widget h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widget p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-widget ul { list-style: none; }

.footer-widget ul li {
  margin-bottom: 6px;
}

.footer-widget ul a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.footer-widget ul a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px;
  text-align: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SERIES COLOR CODING ===== */
.series-silver .series-icon { background: var(--silver); }
.series-gold .series-icon { background: var(--gold); }
.series-multi .series-icon { background: #8e44ad; }
.series-tabletop .series-icon { background: #2980b9; }
.series-panorama .series-icon { background: #27ae60; }
.series-widescreen .series-icon { background: #e67e22; }
.series-supercolor .series-icon { background: var(--red); }
.series-microvs .series-icon { background: #16a085; }
.series-crystal .series-icon { background: #1abc9c; }
.series-other .series-icon { background: #7f8c8d; }

.badge-silver { background: var(--silver); color: #fff; }
.badge-gold { background: var(--gold); color: #fff; }
.badge-multi { background: #8e44ad; color: #fff; }
.badge-tabletop { background: #2980b9; color: #fff; }
.badge-panorama { background: #27ae60; color: #fff; }
.badge-widescreen { background: #e67e22; color: #fff; }
.badge-supercolor { background: var(--red); color: #fff; }
.badge-microvs { background: #16a085; color: #fff; }
.badge-crystal { background: #1abc9c; color: #fff; }
.badge-other { background: #7f8c8d; color: #fff; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 2px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  border: 1px solid var(--red);
  color: var(--red);
}

.btn-outline:hover { background: var(--red); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .game-detail { grid-template-columns: 1fr; }
  .game-specs-card { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .series-intro { grid-template-columns: 1fr; }
  .footer-widgets { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; }
  .main-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--charcoal); padding: 8px 0; }
  .main-nav > a, .dropdown > a { padding: 12px 20px; }
  .dropdown-menu { position: static; border-top: none; }
  .menu-toggle { display: block; }
  .footer-widgets { grid-template-columns: 1fr; gap: 28px; }
  .series-stats { flex-direction: row; }
}

@media (max-width: 480px) {
  .series-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ===== SCROLL UP ===== */
#scroll-up {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 100;
}

#scroll-up.visible { opacity: 1; }
#scroll-up:hover { background: var(--red-dark); }

/* Video embed */
.video-embed {
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Stats bar on home */
.stats-bar {
  background: var(--charcoal-mid);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  gap: 48px;
  justify-content: center;
}

.stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats-bar .stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--red-light);
}

.stats-bar .stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stats-bar-inner { gap: 24px; flex-wrap: wrap; }
}
