/* ===== Shadow Protocol — Design Tokens ===== */
:root {
  /* Background */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --bg-elevated: #1e1e1e;
  --bg-overlay: rgba(0, 0, 0, 0.85);

  /* Accent — warm amber/orange */
  --accent: #d4852a;
  --accent-light: #e8a654;
  --accent-dim: #a36520;
  --accent-glow: rgba(212, 133, 42, 0.35);
  --accent-subtle: rgba(212, 133, 42, 0.08);

  /* Role colors */
  --role-civilian: #2ecc71;
  --role-civilian-dim: rgba(46, 204, 113, 0.15);
  --role-spy: #e74c3c;
  --role-spy-dim: rgba(231, 76, 60, 0.15);
  --role-imposter: #e67e22;
  --role-imposter-dim: rgba(230, 126, 34, 0.15);

  /* Text */
  --text-primary: #f0ece4;
  --text-secondary: #9a9590;
  --text-muted: #5a5550;
  --text-inverse: #0a0a0a;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-accent: var(--accent);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px var(--accent-glow);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --fs-xs: 0.7rem;
  --fs-sm: 0.8rem;
  --fs-base: 0.95rem;
  --fs-md: 1.1rem;
  --fs-lg: 1.4rem;
  --fs-xl: 1.8rem;
  --fs-2xl: 2.4rem;
  --fs-3xl: 3.2rem;
  --fs-timer: 5rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* Layout */
  --max-width: 480px;
  --header-height: 56px;
}
