:root {
  --bg: #0f1226;
  --bg-soft: #171b3a;
  --surface: #1e2348;
  --surface-2: #262c58;
  --text: #f4f5fb;
  --muted: #9aa0cc;
  --line: #333a6e;
  --a: #ff6a5b;
  --a-soft: #ff6a5b22;
  --b: #35d0c4;
  --b-soft: #35d0c422;
  --accent: #8b8ef7;
  --good: #3fd67a;
  --warn: #ffb648;
  --radius: 18px;
  --font: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 20% -10%, #262c62 0%, var(--bg) 55%);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.badge.open {
  background: #3fd67a1f;
  color: var(--good);
}

.badge.closed {
  background: #ffb6481f;
  color: var(--warn);
}
