/* tokens.css — design tokens. Dark "game hall" is the default brand.
   A light theme is provided for prefers-color-scheme / toggle, with
   WCAG-AA contrast. */

:root {
  --background: #0E1116;
  --surface: #181C24;
  --surface-alt: #222733;
  --surface-2: #2A3040;
  --text: #F5F2EA;
  --text-muted: #AEB5C2;
  --border: #2C3340;

  --fuslie: #FF6B9A;
  --squeex: #48C9FF;
  --ludwig: #FF6A4D;
  --valkyrae: #9C7CFF;

  --success: #67D391;
  --warning: #F6C85F;
  --focus: #FFD166;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;

  --maxw: 1100px;
  --maxw-narrow: 760px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);

  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --tap: 44px;
}

/* Light theme (used only when the user opts in via the toggle or OS setting). */
:root[data-theme="light"] {
  --background: #F4F1EA;
  --surface: #FFFFFF;
  --surface-alt: #EFEBE3;
  --surface-2: #E4DFD4;
  --text: #15181F;
  --text-muted: #4A515E;
  --border: #D8D2C6;

  --fuslie: #D63B6E;
  --squeex: #1E84B8;
  --ludwig: #D9431F;
  --valkyrae: #6E4BD0;

  --focus: #B5791B;
  --shadow: 0 10px 30px rgba(20, 24, 31, 0.12);
  --shadow-sm: 0 4px 14px rgba(20, 24, 31, 0.08);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --background: #F4F1EA;
    --surface: #FFFFFF;
    --surface-alt: #EFEBE3;
    --surface-2: #E4DFD4;
    --text: #15181F;
    --text-muted: #4A515E;
    --border: #D8D2C6;
    --fuslie: #D63B6E;
    --squeex: #1E84B8;
    --ludwig: #D9431F;
    --valkyrae: #6E4BD0;
    --focus: #B5791B;
    --shadow: 0 10px 30px rgba(20, 24, 31, 0.12);
    --shadow-sm: 0 4px 14px rgba(20, 24, 31, 0.08);
  }
}
