:root {
  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f18;
  --bg-card: #12121e;
  --bg-card-hover: #181828;
  --bg-input: #0e0e1a;

  /* Accent colors */
  --green: #00ff88;
  --green-dim: #00cc6a;
  --green-glow: rgba(0, 255, 136, 0.3);
  --green-subtle: rgba(0, 255, 136, 0.08);
  --red: #ff3355;
  --red-dim: #cc2944;
  --red-glow: rgba(255, 51, 85, 0.3);
  --yellow: #ffcc00;
  --yellow-dim: #cca300;
  --cyan: #00ccff;
  --cyan-glow: rgba(0, 204, 255, 0.3);
  --purple: #aa55ff;

  /* Text */
  --text-primary: #e0e0e8;
  --text-secondary: #8888a0;
  --text-dim: #555570;
  --text-green: #00ff88;

  /* Borders */
  --border: #1a1a2e;
  --border-bright: #2a2a40;

  /* Typography */
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Consolas', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}
