/* ============================================================
   DMJ Design Tokens — CSS Custom Properties
   Exact match to prototype: tournaments.css :root block
   ============================================================ */

:root {
  --teal:        #10b3b0;
  --teal-dark:   #0a7f7d;
  --teal-light:  #5fc7c4;
  --red:         #d93a2c;
  --red-mid:     #ea4a35;
  --red-dark:    #a8281d;
  --coral:       #f2896e;
  --ink:         #1f1f2e;
  --muted:       #7e7a8b;
  --soft:        #5a5665;
  --warm-white:  #fcf8ee;
  --border:      #ece5da;
  --sand:        #f0eee9;
  --font-sans:   "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:  "Cormorant Garamond", Georgia, serif;
  --grad-teal:   linear-gradient(90deg,  #0a7f7d 0%, #10b3b0 45%, #5fc7c4 100%);
  --grad-teal-d: linear-gradient(135deg, #0a7f7d 0%, #10b3b0 50%, #5fc7c4 100%);
  --grad-red:    linear-gradient(90deg,  #f2896e 0%, #ea4a35 55%, #a8281d 100%);
  --grad-red-d:  linear-gradient(135deg, #f2896e 0%, #ea4a35 55%, #a8281d 100%);
}
