/* Dark Theme — CSS Custom Properties */

:root {
  /* Backgrounds */
  --bg-primary: #0a0c14;
  --bg-secondary: #131722;
  --bg-card: #1a1e2b;
  --bg-hover: #222738;

  /* Text */
  --text-primary: #e8eaf0;
  --text-secondary: #8b90a5;
  --text-muted: #5a5f75;

  /* Accent */
  --accent: #5c7cfa;
  --accent-glow: rgba(92, 124, 250, 0.15);
  --accent-hover: #7b95fb;
  --accent-secondary: #2dd4bf;

  /* Semantic */
  --success: #4ade80;
  --warning: #fbbf24;
  --error: #f87171;

  /* Borders */
  --border: #262b38;
  --border-light: #2f3548;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Borders & Radii */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1024px;
  --header-height: 64px;

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 350ms ease;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px var(--accent-glow);
}
