:root {
  --bg-primary: #0d0d15;
  --bg-secondary: #15151f;
  --bg-card: #1a1a2e;
  --bg-elevated: #20203a;

  --accent-blue: #4a7dff;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;

  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b85;

  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --topbar-height: 66px;
  --bottom-nav-height: 64px;
}

[data-theme="light"] {
  --bg-primary: #f4f5fb;
  --bg-secondary: #eaeaf3;
  --bg-card: #ffffff;
  --bg-elevated: #f8f8ff;
  --text-primary: #0d0d15;
  --text-secondary: #4a4a63;
  --text-muted: #8a8aa3;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(74, 125, 255, 0.12);
}