/* ══════════════════════════════════════════════════════════
   RETRO THEME — MASTER VARIABLES
   ══════════════════════════════════════════════════════════
   ★ SINGLE SOURCE OF TRUTH ★
   Change values here → entire site updates automatically.
   Every retro-*.css file references these --rt-* variables.
   ══════════════════════════════════════════════════════════ */

:root {
  /* ── Background Layers ──────────────────────────────── */
  --rt-void:        #06060e;   /* Deepest black            */
  --rt-deep:        #0a0a14;   /* Dark panels / footer bg  */
  --rt-surface:     #0e0e1a;   /* Cards / raised surfaces  */
  --rt-surface-2:   #141422;   /* Subtle card gradient end */
  --rt-surface-3:   #1a1a2e;   /* Lighter surfaces         */

  /* ── Brand Neon (Primary — Magenta) ────────────────── */
  --rt-neon:        #d41150;
  --rt-neon-light:  #ff54ad;
  --rt-neon-glow:   rgba(212, 17, 80, 0.35);
  --rt-neon-soft:   rgba(212, 17, 80, 0.12);
  --rt-neon-faint:  rgba(212, 17, 80, 0.06);

  /* ── Accent (Cyan) ─────────────────────────────────── */
  --rt-cyan:        #06b6d4;
  --rt-cyan-glow:   rgba(6, 182, 212, 0.25);
  --rt-cyan-soft:   rgba(6, 182, 212, 0.10);

  /* ── Text Palette ──────────────────────────────────── */
  --rt-text:        #c8cad0;   /* Default body copy         */
  --rt-text-dim:    #6b7080;   /* Muted / secondary text    */
  --rt-text-bright: #eef0f4;   /* Headings / emphasis       */
  --rt-text-white:  #ffffff;   /* Pure white for contrast   */

  /* ── Typography Stacks ─────────────────────────────── */
  --rt-font-display: 'Orbitron', 'Bai Jamjuree', sans-serif;
  --rt-font-mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --rt-font-body:    'Bai Jamjuree', 'Segoe UI', sans-serif;

  /* ── Borders & Dividers ────────────────────────────── */
  --rt-border:       rgba(255, 255, 255, 0.06);
  --rt-border-neon:  rgba(212, 17, 80, 0.15);

  /* ── Shadows ───────────────────────────────────────── */
  --rt-glow-neon:    0 0 20px rgba(212, 17, 80, 0.3), 0 0 60px rgba(212, 17, 80, 0.1);
  --rt-glow-cyan:    0 0 20px rgba(6, 182, 212, 0.3), 0 0 60px rgba(6, 182, 212, 0.1);
  --rt-shadow-card:  0 10px 40px rgba(0, 0, 0, 0.4);

  /* ── Transition Defaults ───────────────────────────── */
  --rt-ease:         cubic-bezier(0.23, 1, 0.32, 1);
  --rt-speed:        0.3s;
}
