/* Design tokens — palette, typo, spacing, radii.
   Ces variables sont consommées par tous les autres CSS du projet.
   Voir docs/04_frontend.md pour la convention. */

:root {
  /* Couleurs surface */
  --bg: #0d0d11;
  --surface: #18181f;
  --surface2: #1e1e27;
  --surface3: #24242e;
  --border: #2c2c38;
  --border2: #3a3a48;

  /* Couleurs texte */
  --text: #eeeef5;
  --text2: #9494a8;
  --text3: #55556a;

  /* Couleurs sémantiques */
  --blue: #5b8aba;
  --blue-glow: rgba(91, 138, 186, 0.2);
  --green: #4caf76;
  --red: #e05252;
  --amber: #e8a03a;
  --teal: #3abfa0;

  /* Boutons d'action poker */
  --btn-fold: #4a6fa8;
  --btn-call: #2d6e50;
  --btn-check: #2d5a6e;
  --btn-raise: #c0392b;
  --btn-shove: #8b1a1a;

  /* Couleurs matrice GTO */
  --act-fold: #4a6fa8;
  --act-call: #3d8060;
  --act-check: #3d8060;
  --act-limp: #3d8060;
  --act-raise: #d45555;
  --act-shove: #8b2020;

  /* Typographie */
  --font-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* Élévations */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.5);

  /* Layout */
  --topbar-height: 48px;
}
