/* ============================================================
   GTO 홀덤 — shared design tokens (Tone #1: refined dark + gold)
   New tokens are prefixed --c-* / --rad* so they don't collide with
   per-page legacy vars during the phased UI overhaul.
   ============================================================ */
:root{
  --c-bg:#0d1014;
  --c-surface:#161b22;
  --c-surface2:#1c232d;
  --c-line:#20262e;
  --c-line2:#2a313c;
  --c-text:#e6edf3;
  --c-muted:#8b96a3;
  --c-faint:#5a6573;
  --c-gold:#f0b429;
  --c-gold-bg:#241f10;
  --c-gold-ln:#5a4a18;
  --c-green:#3fb950;
  --c-red:#f0564a;
  --c-teal:#2ec4b6;
  --c-blue:#4493f8;
  --c-orange:#f0884a;
  --rad1:8px;
  --rad2:11px;
  --rad3:14px;
  --rad4:18px;
  --ttime:30s;   /* hero action timer (≈2× a typical app's clock); keep in sync with HERO_TIME_MS in play.html */
  /* poker-game type system (B · luxury card-room):
     --font-num  = Oswald condensed for ALL numbers (chip stacks/pot/scores); Korean units fall back to Pretendard
     --font-disp = Cinzel serif caps for the wordmark / Latin display */
  --font-num:'Oswald','Pretendard',sans-serif;
  --font-disp:'Noto Serif KR','Pretendard',serif;   /* wordmark "정석" — Korean myeongjo serif (classic/authoritative) */
}
html,body{font-family:'Pretendard','Pretendard Variable',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}
.ti{font-style:normal;vertical-align:-0.125em}
.num{font-family:var(--font-num);font-variant-numeric:tabular-nums;font-feature-settings:'tnum'}
.disp{font-family:var(--font-disp);letter-spacing:.4px}
