:root {
  --bg: #0a0d14; --bg-2: #0f131c; --bg-3: #161b27;
  --surface: #1a2031; --surface-2: #232a3d;
  --border: #2a3145; --border-2: #353d54;
  --text: #e2e8f0; --text-mut: #94a3b8; --text-dim: #64748b;
  --accent: #6366f1; --accent-2: #818cf8;
  --pos: #10b981; --neg: #f43f5e; --warn: #f59e0b;
}
[data-theme="light"] {
  --bg: #f8fafc; --bg-2: #f1f5f9; --bg-3: #e2e8f0;
  --surface: #ffffff; --surface-2: #f8fafc;
  --border: #e2e8f0; --border-2: #cbd5e1;
  --text: #0f172a; --text-mut: #475569; --text-dim: #94a3b8;
  --accent: #4f46e5; --accent-2: #6366f1;
}
*{box-sizing:border-box}
body{font-family:'Inter',ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--bg);color:var(--text);margin:0;font-feature-settings:'cv11','ss01','ss03'}
.num{font-variant-numeric:tabular-nums;letter-spacing:-.01em}
.pos{color:var(--pos)}.neg{color:var(--neg)}.mut{color:var(--text-mut)}.dim{color:var(--text-dim)}
.hidden{display:none !important}

::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--border-2);border-radius:5px}
::-webkit-scrollbar-thumb:hover{background:var(--text-dim)}
