/* ── Chudopoly GO — Variables & Reset ─────────────────────────────────── */

:root {
  --af-blue: #00308F;
  --af-dark: #0A1628;
  --af-navy: #111D35;
  --af-silver: #C0C0C0;
  --af-gold: #FFD700;
  --af-light: #E8EDF5;
  --card-w: 110px;
  --card-h: 155px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { height:100%; -webkit-text-size-adjust:100%; }
body {
  font-family:'Segoe UI',system-ui,-apple-system,sans-serif;
  background:var(--af-dark); color:#fff;
  min-height:100%; min-height:100dvh;
  overscroll-behavior:none;
  -webkit-tap-highlight-color:transparent;
}
