/* variables.css - Design Tokens | Deep Purple & Cyan Theme */
:root {
  /* Colors - Primary (Dark Theme) */
  --color-bg: #120824;
  --color-bg-card: #1e0f3c;
  --color-bg-elevated: #2d1b4e;
  --color-surface: #3a2560;

  /* Colors - Accents */
  --color-cyan: #00e5ff;
  --color-gold: #00e5ff;
  --color-green: #2ecc71;
  --color-red: #e74c3c;
  --color-purple: #cc00ff;
  --color-blue: #6366f1;
  --color-orange: #e040fb;

  /* Colors - Text */
  --color-text: #ffffff;
  --color-text-secondary: #c4b5d8;
  --color-text-muted: #9b8ab8;
  --color-text-dim: #6b5a85;

  /* Colors - Borders */
  --color-border: #3a2560;
  --color-border-hover: #5a3d80;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.5);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --sidebar-width: 180px;
  --header-height: 64px;
  --container-max: 1400px;
}
