/* ===== DialIn CSS Variables — Cyberpunk Theme ===== */
:root {
  /* Backgrounds */
  --bg-primary: #0A0A0F;
  --bg-secondary: #12121A;
  --bg-card: #1A1A2E;
  --bg-hover: #222240;
  --border: #2A2A3E;
  --border-light: #3A3A5E;

  /* Neon Accent Colors */
  --neon-cyan: #00F0FF;
  --neon-cyan-dim: #00F0FF40;
  --neon-cyan-glow: #00F0FF80;
  --neon-pink: #FF0066;
  --neon-pink-dim: #FF006640;
  --neon-pink-glow: #FF006680;
  --neon-purple: #A855F7;
  --neon-purple-dim: #A855F740;
  --neon-purple-glow: #A855F780;
  --neon-green: #00FF88;
  --neon-green-dim: #00FF8840;
  --neon-green-glow: #00FF8880;
  --neon-yellow: #FFE500;
  --neon-yellow-dim: #FFE50040;
  --neon-yellow-glow: #FFE50080;
  --neon-orange: #FF6B00;
  --neon-orange-dim: #FF6B0040;

  /* Text */
  --text-primary: #E0E0FF;
  --text-secondary: #6B7294;
  --text-muted: #3D4466;
  --text-accent: #00F0FF;

  /* Fonts */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Sizes */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index layers */
  --z-base: 1;
  --z-overlay: 10;
  --z-modal: 100;
  --z-scanlines: 9999;
}

/* ===== Light Theme ===== */
:root[data-theme="light"] {
  --bg-primary: #F0F2F5;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-hover: #E8EBF0;
  --border: #D0D5DD;
  --border-light: #E0E4EA;

  --neon-cyan: #0891B2;
  --neon-cyan-dim: #0891B230;
  --neon-cyan-glow: #0891B250;
  --neon-pink: #E11D48;
  --neon-pink-dim: #E11D4830;
  --neon-pink-glow: #E11D4850;
  --neon-purple: #7C3AED;
  --neon-purple-dim: #7C3AED30;
  --neon-purple-glow: #7C3AED50;
  --neon-green: #059669;
  --neon-green-dim: #05966930;
  --neon-green-glow: #05966950;
  --neon-yellow: #D97706;
  --neon-yellow-dim: #D9770630;
  --neon-yellow-glow: #D9770650;
  --neon-orange: #EA580C;
  --neon-orange-dim: #EA580C30;

  --text-primary: #1A1A2E;
  --text-secondary: #6B7294;
  --text-muted: #9CA3AF;
  --text-accent: #0891B2;
}

:root[data-theme="light"] body {
  background: #F0F2F5;
}

:root[data-theme="light"] .scanlines::after {
  display: none;
}

:root[data-theme="light"] #matrix-bg {
  opacity: 0.06;
}
