/* css/base.css */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  background: var(--bg-deep);
  padding:16px 12px;
  display:flex;
  justify-content:center;
}

.app{
  width:100%;
  max-width:980px;
  display:flex;
  flex-direction:column;
  gap:var(--gap);
}