:root {
  --font-main: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Light Theme */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --border: #e2e8f0;
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.12);

  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --header-height: 64px;
}

[data-theme="dark"] {
  --bg-primary: #0b1120;
  --bg-secondary: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --accent: #fbbf24;
  --accent-hover: #f59e0b;
  --border: #334155;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 32px rgba(0, 0, 0, 0.5);
}