/* Academy Poker GTO — design tokens */
:root {
  /* Brand */
  --bg-deep: #0a0c14;
  --bg-panel: #0d0f17;
  --bg-elev: #141826;
  --bg-line: rgba(255,255,255,0.08);
  --bg-line-strong: rgba(255,255,255,0.16);

  /* Felt accent (subtle) */
  --felt: #0f2a22;
  --felt-edge: #1a4a3a;

  /* Text */
  --text: #f3f1ea;
  --text-mute: rgba(243,241,234,0.62);
  --text-dim: rgba(243,241,234,0.38);

  /* Accents */
  --gold: #d4a24a;
  --gold-bright: #e8b95c;
  --teal: #4fd1c5;       /* low SPR — controlled */
  --amber: #e8b95c;      /* mid SPR */
  --crimson: #e0556a;    /* high SPR — danger */
  --blue: #6ea8ff;       /* informational */

  /* Card suits */
  --suit-red: #e0556a;
  --suit-black: #f3f1ea;

  /* Type */
  --font-display: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

/* Global reset within stage */
.spr-video * { box-sizing: border-box; }
.spr-video { font-family: var(--font-display); color: var(--text); }
