/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   Dark mode color scheme and design tokens
   ======================================== */

:root {
  /* Background Colors */
  --bg-primary: #0a0e1a;
  --bg-secondary: #131720;
  --bg-card: #1a1f2e;
  --bg-hover: #222939;
  --header-bg: #0f1419;
  --footer-bg: #0f1419;

  /* Text Colors */
  --text-primary: #f0f0f0;
  --text-secondary: #d6d6d6;
  --text-muted: #b0b0b0;

  /* Border Colors */
  --border-color: #2d3548;
  --border-hover: #3d4658;

  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-blue-hover: #2563eb;
  --accent-blue-light: #60a5fa;

  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}
