/* games-dashboard/lib/shared.css — common design tokens */
:root {
  --bg:   oklch(0.97 0.005 90);
  --ink:  oklch(0.18 0.01 260);
  --mute: oklch(0.58 0.005 90);
  --hair: oklch(0.88 0.005 90);
  --panel: oklch(0.99 0.003 90);
  --accent-teal:    oklch(0.62 0.13 200);
  --accent-amber:   oklch(0.72 0.15 70);
  --accent-magenta: oklch(0.62 0.18 340);
  --accent-lime:    oklch(0.78 0.16 130);
  --accent-violet:  oklch(0.55 0.18 290);
  --accent-coral:   oklch(0.68 0.16 30);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0; height: 100%;
  background: var(--bg); color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; border-radius: 0; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; }
