/* F1 production - tokens locked in docs/F0_STYLE_LOCK.md. Do not change values without updating the lock. */

:root {
  --bg: #0b0d12;
  --panel: #12151c;
  --panel-border: #23283333;
  --panel-border-solid: #262b36;
  --text: #e6e9f0;
  --text-dim: #8b93a3;
  --text-faint: #565e6e;
  --accent: #4f8dff;
  --accent-dim: #2a3f66;
  --market: #d98c3a;
  --warn: #e0a83e;
  --bad: #d9544d;
  --good: #3fb27f;
  --team-primary: var(--accent);
  --team-secondary: var(--market);
  --team-accent: var(--accent);
  --mono: "SF Mono", "Courier New", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
}

a { color: var(--accent); }
