:root {
  color-scheme: light dark;
  --bg: #0f1115;
  --card-bg: #1a1d24;
  --text: #e8e9ec;
  --muted: #9aa0aa;
  --accent: #5865f2;
  --error: #ed4245;
}

* {
  box-sizing: border-box;
}

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

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
}

.status {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.detail {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  min-height: 1.2em;
}

.turnstile {
  display: flex;
  justify-content: center;
}

.error {
  color: var(--error);
}
