:root {
  --bg: #f7f4ef;
  --fg: #111;
  --muted: #777;
  --accent: #ff5577;
  --ok: #2faa63;
  --ng: #d4493b;
  --card: #ffffff;
  --border: #e6e1d8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, "Segoe UI", sans-serif; }
body { min-height: 100vh; }
button { font: inherit; cursor: pointer; }
a { color: var(--accent); }
.center { text-align: center; }
.small { font-size: 12px; color: var(--muted); }
.hidden { display: none !important; }
