:root {
  /* Colors - Dark theme */
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2234;
  --bg-card-hover: #1f2b42;
  --bg-input: #0d1322;
  --bg-modal: rgba(0, 0, 0, 0.7);
  --bg-glass: rgba(26, 34, 52, 0.85);

  /* Accent */
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-dim: rgba(59, 130, 246, 0.15);
  --accent-glow: rgba(59, 130, 246, 0.3);

  /* Status colors */
  --success: #22c55e;
  --success-dim: rgba(34, 197, 94, 0.15);
  --warning: #f59e0b;
  --warning-dim: rgba(245, 158, 11, 0.15);
  --danger: #ef4444;
  --danger-dim: rgba(239, 68, 68, 0.15);
  --info: #06b6d4;
  --info-dim: rgba(6, 182, 212, 0.15);

  /* Text */
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #475569;
  --text-on-accent: #ffffff;

  /* Borders */
  --border: #1e293b;
  --border-hover: #334155;
  --border-focus: var(--accent);

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px var(--accent-glow);

  /* Spacing */
  --gap-xs: 3px;
  --gap-sm: 6px;
  --gap: 12px;
  --gap-lg: 18px;
  --gap-xl: 24px;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --fs-xs: 10px;
  --fs-sm: 12px;
  --fs: 13px;
  --fs-lg: 15px;
  --fs-xl: 18px;
  --fs-2xl: 22px;
  --fs-3xl: 28px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}
