:root {
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --container-page: 1440px;
  --container-main: 1280px;
  --container-text: 760px;

  --color-primary: #facc15;
  --color-primary-hover: #eab308;
  --color-primary-soft: #fef3c7;

  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  --color-warning: #f59e0b;

  --shadow-card-dark: 0 12px 30px rgba(0, 0, 0, 0.28);
  --shadow-card-light: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-dropdown-dark: 0 18px 40px rgba(0, 0, 0, 0.35);
  --shadow-dropdown-light: 0 12px 40px rgba(15, 23, 42, 0.12);

  --transition-fast: 0.18s ease;
  --transition-base: 0.24s ease;
}

:root,
[data-theme="dark"] {
  --bg: #0b1020;
  --bg-alt: #111827;
  --surface: #151c2f;
  --surface-2: #1a2440;
  --border: #27324a;
  --text: #f8fafc;
  --text-soft: #94a3b8;
  --text-muted: #64748b;
  --shadow-card: var(--shadow-card-dark);
  --shadow-dropdown: var(--shadow-dropdown-dark);
}

[data-theme="light"] {
  --bg: #f8fafc;
  --bg-alt: #eef2f7;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #d9e1ec;
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --shadow-card: var(--shadow-card-light);
  --shadow-dropdown: var(--shadow-dropdown-light);
}