/* ==========================================================================
   DJ Nakul Hans - Design System Variables & Theme Tokens
   Color Scheme: Electric Blue, Cyan, Deep Cobalt & Pure White
   ========================================================================== */

:root {
  /* Default Dark Theme Tokens */
  --bg-primary: #060913;
  --bg-secondary: #0b1124;
  --bg-tertiary: #121b36;
  --bg-card: rgba(15, 23, 48, 0.65);
  --bg-card-hover: rgba(24, 37, 74, 0.85);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-light: #ffffff;

  /* Brand Accents - Electric Cyan & Deep Indigo */
  --accent-cyan: #00f0ff;
  --accent-blue: #2563eb;
  --accent-electric: #0284c7;
  --accent-glow: rgba(0, 240, 255, 0.4);
  --accent-glow-strong: rgba(0, 240, 255, 0.8);
  --accent-secondary: #38bdf8;
  
  /* Red accent to highlight the signature logo & live badges */
  --logo-red: #ff334b;
  --live-red: #ff2a44;

  /* Borders & Glassmorphism */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 240, 255, 0.5);
  --glass-bg: rgba(11, 17, 36, 0.65);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(16px);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 35px rgba(0, 240, 255, 0.25);
  --shadow-glow-lg: 0 0 60px rgba(0, 240, 255, 0.4);

  /* Fonts & Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Container */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Light Theme Overrides */
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-tertiary: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #0f172a;

  --accent-cyan: #0284c7;
  --accent-blue: #1d4ed8;
  --accent-electric: #0369a1;
  --accent-glow: rgba(2, 132, 199, 0.25);
  --accent-glow-strong: rgba(2, 132, 199, 0.5);
  --accent-secondary: #0ea5e9;

  --border-color: rgba(15, 23, 42, 0.1);
  --border-focus: rgba(2, 132, 199, 0.5);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.15);
  --shadow-glow-lg: 0 0 45px rgba(2, 132, 199, 0.25);
}
