:root {
  --bg: #0d0f12;
  --panel: #15181d;
  --line: #262b33;
  --text: #e7e9ee;
  --dim: #8b93a1;
  --accent: #ff7a45;
  --discord: #5865f2;
  --bad: #ff5c5c;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.5 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
main { width: 100%; max-width: 520px; }
h1 { margin: 0 0 6px; font-size: 30px; letter-spacing: -0.02em; }
.sub { margin: 0 0 28px; color: var(--dim); }
/* A heading with no subtitle under it still needs the gap to the card. */
h1.bare { margin-bottom: 28px; }
.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 12px;
  padding: 18px 20px;
}
.card h2 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}
dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; }
dt { color: var(--dim); }
dd {
  margin: 0;
  text-align: right;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}
footer { margin-top: 20px; color: var(--dim); font-size: 13px; }
a { color: var(--accent); }

/* Login */
.discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--discord);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.discord:hover { filter: brightness(1.1); }
.discord svg { width: 20px; height: 20px; fill: currentColor; }
.note { margin: 16px 0 0; color: var(--dim); font-size: 13px; text-align: center; }
.denied {
  margin: 0 0 18px;
  padding: 11px 14px;
  border: 1px solid #56262b;
  background: #231517;
  border-radius: 9px;
  color: var(--bad);
  font-size: 14px;
}
[hidden] { display: none !important; }
