/* ========================================
   UKV Radio — Design Tokens
   Cyberpunk / Neon Theme
   ======================================== */

:root {
  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
  --bg-gradient-subtle: linear-gradient(180deg, #0a0a0f 0%, #111119 100%);

  /* Neon Accents */
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00aa;
  --neon-purple: #b026ff;
  --neon-pink: #ff2d7b;
  --neon-green: #39ff14;
  --neon-yellow: #ffe600;

  /* Text */
  --text-primary: #e8eaed;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --text-bright: #ffffff;

  /* Glows */
  --glow-cyan: 0 0 7px #00f0ff, 0 0 20px #00f0ff55, 0 0 40px #00f0ff22;
  --glow-cyan-sm: 0 0 5px #00f0ff, 0 0 15px #00f0ff33;
  --glow-magenta: 0 0 7px #ff00aa, 0 0 20px #ff00aa55, 0 0 40px #ff00aa22;
  --glow-magenta-sm: 0 0 5px #ff00aa, 0 0 15px #ff00aa33;
  --glow-purple: 0 0 7px #b026ff, 0 0 20px #b026ff55, 0 0 40px #b026ff22;

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-neon: 1px solid rgba(0, 240, 255, 0.3);
  --border-neon-bright: 1px solid rgba(0, 240, 255, 0.6);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Font Sizes */
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-nav: 100;
  --z-player: 90;
  --z-overlay: 200;
  --z-modal: 300;
}
