/* dark.css */
.theme-dark {
  /* Colors */
  --bg-primary: #05070f;
  --bg-secondary: #0a0f1d;
  --bg-tertiary: #11182c;
  
  --text-primary: #ffffff;
  --text-secondary: #b5bdc9;
  --text-muted: #828a99;

  /* Accent Colors */
  --accent-color: #00f0ff;
  --accent-gradient: linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);
  --accent-glow: rgba(0, 240, 255, 0.3);
  --accent-hover: #33f3ff;
  
  /* Glassmorphism Styles */
  --glass-bg: rgba(10, 15, 29, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  --glass-glow: rgba(0, 240, 255, 0.05);

  /* Card Colors */
  --card-bg: #0c1328;
  --card-border: rgba(255, 255, 255, 0.05);
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  
  /* Inputs */
  --input-bg: rgba(5, 7, 15, 0.8);
  --input-border: rgba(255, 255, 255, 0.1);
  --input-focus-border: #00f0ff;

  /* Verification / OTP code inputs — needs its own colour so the digits stay
     legible against the modal background in every theme. */
  --code-input-bg: #070c1a;
  --code-input-text: #00f0ff;
  --code-input-border: rgba(0, 240, 255, 0.35);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  
  /* Separator */
  --separator-color: rgba(255, 255, 255, 0.05);

  /* Hero academy title */
  --hero-title-color: #3b82f6;
}
