/* ── Base: reset, variables, body ── */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#1e1518;
  --wall:#2a1c1f;
  --card-bg:#fff;
  --black:#222;
  --red:#d44;
  --dark:#333;
  --cork:#a08060;
}
body{
  background:var(--bg);
  font-family:'Nunito',sans-serif;
  min-height:100vh;
  overflow-x:hidden;
  color:#eee;
}
