/* ── MinersDiners Design System — tokens.css ──────────────────────────────
 *
 * Single source of truth for all CSS custom properties.
 * All dashboard pages link this file and remove their local :root blocks.
 *
 * Includes:
 *   - Color tokens (gold, silver, backgrounds, text, status)
 *   - Base reset (box-sizing, margin, padding)
 *   - Body defaults (background, color, font, min-height)
 *
 * KAN-241 — UX/UI Design Overhaul
 * ─────────────────────────────────────────────────────────────────────── */

:root {
  /* Gold palette */
  --gold:          #C9A84C;
  --gold-bright:   #F0C040;
  --gold-dim:      #8A6A1E;

  /* Silver palette */
  --silver:        #A8B8C4;
  --silver-dim:    #6A7A84;

  /* Background palette */
  --bg-deep:       #0A0C0E;
  --bg-panel:      #111418;
  --bg-card:       #161B22;
  --bg-hover:      #1C2230;

  /* Borders */
  --border:        #2A3040;

  /* Text palette */
  --text-primary:  #E8EAF0;
  --text-secondary:#8A9AB0;
  --text-dim:      #4A5A70;
  --text-muted:    #4A5568;

  /* Status colors */
  --green:         #3FB06A;
  --red:           #CC4444;
  --blue:          #4A8FC4;
  --amber:         #CC8844;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  min-height: 100vh;
}
