/* Shared design tokens — the master "color/font stencil".
   Linked by every page that uses the standard dark theme.
   Do NOT hand-copy these into a page's <style> block; link this file instead. */
:root {
  --color-bg:          #0a0a0a;
  --color-surface:     #111111;
  --color-surface-2:   #1a1a1a;
  --color-border:      #222222;
  --color-text:        #f0f0f0;
  --color-text-muted:  #888888;
  --color-accent:      #d4ff00;
  --color-accent-dark: #b8dd00;
  --color-accent-text: #0a0a0a;
  --font-body:         'Inter', system-ui, sans-serif;
  --font-display:      'Anton', sans-serif;
  --font-logo:         'Syne', system-ui, sans-serif;
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         20px;
  --shadow-card:       0 0 0 1px var(--color-border), 0 4px 24px rgba(0,0,0,0.4);
}
