:root {
  color-scheme: dark;
  --bg: #050806;
  --panel: rgba(9, 15, 11, 0.92);
  --line: rgba(87, 234, 132, 0.22);
  --green: #57ea84;
  --red: #ff6370;
  --text: #edf5ef;
  --muted: #87958b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 28%, rgba(40, 139, 74, 0.1), transparent 28rem), var(--bg);
  color: var(--text);
}
main { width: min(100% - 32px, 520px); text-align: center; }
.brand-logo { width: 148px; height: auto; margin: 0 auto 34px; }
.status-card { padding: 38px 28px; border: 1px solid var(--line); background: var(--panel); box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42); }
.indicator { display: block; width: 11px; height: 11px; margin: 0 auto 20px; border-radius: 50%; background: #d9b955; box-shadow: 0 0 16px rgba(217, 185, 85, 0.7); }
.indicator.operational { background: var(--green); box-shadow: 0 0 16px rgba(87, 234, 132, 0.75); }
.indicator.unavailable { background: var(--red); box-shadow: 0 0 16px rgba(255, 99, 112, 0.75); }
h1 { margin: 0 0 10px; font-size: 1.35rem; letter-spacing: -0.02em; }
p { margin: 0; color: var(--muted); line-height: 1.5; }
.updated { margin-top: 18px; font: 0.68rem/1.4 Consolas, "Liberation Mono", monospace; letter-spacing: 0.08em; text-transform: uppercase; }
