@import "tailwindcss";

:root {
  --bg: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --border: #e2e5e9;
  --text: #1a1a2e;
  --text-secondary: #5a5f72;
  --accent: #1e3a5f;
  --accent-light: #2a5298;
  --gold: #b8860b;
  --red: #c0392b;
  --green: #27ae60;
  --orange: #d35400;
  --purple: #7d3c98;
}

[data-theme="dark"] {
  --bg: #0f1117;
  --bg-secondary: #181a24;
  --bg-card: #1e2030;
  --border: #2e3148;
  --text: #e4e6ed;
  --text-secondary: #9196ab;
  --accent: #6b8cce;
  --accent-light: #8faee0;
  --gold: #d4a843;
  --red: #e74c3c;
  --green: #2ecc71;
  --orange: #e67e22;
  --purple: #b07cc6;
}

@theme inline {
  --color-bg: var(--bg);
  --color-bg-secondary: var(--bg-secondary);
  --color-bg-card: var(--bg-card);
  --color-brd: var(--border);
  --color-txt: var(--text);
  --color-txt2: var(--text-secondary);
  --color-accent: var(--accent);
  --color-accent-light: var(--accent-light);
  --color-gold: var(--gold);
  --color-red: var(--red);
  --color-green: var(--green);
  --color-orange: var(--orange);
  --color-purple: var(--purple);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
