:root {
  /* ── Core Palette ── */
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f35;
  --bg-card-hover: #222845;

  /* ── Neon Accents ── */
  --neon-cyan: #00f0ff;
  --neon-blue: #3b82f6;
  --neon-red: #ff3e3e;
  --neon-orange: #ff8c00;
  --neon-green: #39ff14;
  --neon-purple: #a855f7;

  /* ── Metallic ── */
  --chrome: #c0c0c0;
  --chrome-bright: #e8e8e8;
  --chrome-dark: #6b7280;

  /* ── Text ── */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  /* ── Glow Effects ── */
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.2);
  --glow-red: 0 0 20px rgba(255, 62, 62, 0.5), 0 0 40px rgba(255, 62, 62, 0.2);
  --glow-blue: 0 0 20px rgba(59, 130, 246, 0.5);
  --glow-green: 0 0 20px rgba(57, 255, 20, 0.5);
  --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);

  /* ── Typography ── */
  --font-pixel: 'Press Start 2P', monospace;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* ── Spacing ── */
  --section-padding: 6rem 2rem;
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 20px;

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
