/* Design tokens — single source of truth.
   Minimalist dark redesign (welcome varianta 2 "Typographic Manifesto").
   Variable names kept backward-compatible so admin/form pages keep working. */
:root {
  /* ── Backgrounds ── */
  --bg: #08080a;
  --surface: #101015;
  --surface-2: #16161d;
  --surface-3: #20202a;

  /* ── Text ── */
  --text: #f6f6f8;
  --muted: #83838f;
  --faint: #55555f;

  /* ── Lines ── */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* ── Accent: TÝM MODRÝ (desaturated, no glow) ── */
  --accent: #3da9fc;
  --accent-ink: #08080a;
  --accent-dim: rgba(61, 169, 252, 0.08);
  --accent-border: rgba(61, 169, 252, 0.30);

  /* ── Accent 2: TÝM ČERVENÝ — soupeř ── */
  --accent-2: #f25c7a;
  --accent-2-ink: #08080a;
  --accent-2-dim: rgba(242, 92, 122, 0.08);
  --accent-2-border: rgba(242, 92, 122, 0.30);

  /* ── Semantic ── */
  --danger: #f25c7a;
  --error: #ff7a90;
  --info: #3da9fc;
  --success: #34d39a;

  /* ── Typography — jeden grotesk (Sora), bez gaming fontu ── */
  --font: 'Sora', system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;

  /* ── Shape / space ── */
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1100px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  /* glow tokens neutralizovány (zachovány kvuli zpetne kompatibilite) */
  --glow: none;
  --glow-2: none;
}
