:root {
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Segoe UI", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(255, 77, 141, 0.25);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: min(1200px, 92vw);
}

[data-theme="dark"] {
  --bg: #0a0a12;
  --bg-elevated: #12121f;
  --bg-card: #1a1a2e;
  --text: #f0f0f8;
  --text-muted: #9898b8;
  --accent: #ff4d8d;
  --accent-2: #7c5cff;
  --accent-gradient: linear-gradient(135deg, #ff4d8d, #7c5cff);
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(18, 18, 31, 0.75);
}

[data-theme="light"] {
  --bg: #f4f4fa;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --text: #12121f;
  --text-muted: #5a5a78;
  --accent: #e91e7a;
  --accent-2: #5b3fd4;
  --accent-gradient: linear-gradient(135deg, #e91e7a, #5b3fd4);
  --border: rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.85);
}
