:root {
  --bg: #14161c;
  --fg: #e8e6e3;
  --muted: #9a9691;
  --accent: #d8a657;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--fg);
}

header,
main,
footer {
  max-width: 640px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

.logo {
  width: 96px;
  height: 96px;
}

h1 {
  margin: 0.5rem 0 0.25rem;
  font-size: 2rem;
}

h2 {
  font-size: 1.2rem;
  color: var(--accent);
}

.tagline {
  color: var(--muted);
  margin: 0;
}

section {
  margin-bottom: 2rem;
}

button {
  font: inherit;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

button:hover {
  background: var(--accent);
  color: var(--bg);
}

#status {
  color: var(--muted);
  min-height: 1.6em;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  border-top: 1px solid #2a2d35;
  padding-top: 1rem;
}
