/* Minimal public status page. Palette echoes agent/web/styles.css (ember on
   charcoal) for a consistent look, kept intentionally small -- this page has
   one job: up/down/asleep + player count + last-seen. */
:root {
  --bg: #12100e;
  --panel: #1c1917;
  --edge: #2e2823;
  --text: #ece2d2;
  --muted: #a29480;
  --up: #5fb87a;
  --starting: #e0a63a;
  --unhealthy: #d9534f;
  --down: #7a7168;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap { width: min(420px, 92vw); padding: 24px 0; text-align: center; }

h1 { font-size: 18px; font-weight: 600; letter-spacing: 0.3px; margin: 0 0 18px; }

.card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 22px 24px;
}

.row { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 6px 0; }
.row.detail { font-size: 14px; }

.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--down); box-shadow: 0 0 8px currentColor; }
.state-label { font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }

.state-up .dot, .state-up .state-label       { color: var(--up); }
.state-starting .dot, .state-starting .state-label { color: var(--starting); }
.state-unhealthy .dot, .state-unhealthy .state-label { color: var(--unhealthy); }
.state-down .dot, .state-down .state-label,
.state-unknown .dot, .state-unknown .state-label { color: var(--down); }

.muted { color: var(--muted); font-size: 13px; }
.footnote { color: var(--muted); font-size: 12px; margin-top: 16px; }
