:root {
  color-scheme: light dark;
  --bg: #0f172a;
  --fg: #e2e8f0;
  --accent: #38bdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
}

.container {
  max-width: 40rem;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 0.5rem;
}

a {
  color: var(--accent);
}

.status {
  margin-top: 2rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
}
