:root {
  --bg: #11110f;
  --surface: #1b1b17;
  --text: #f6f3e8;
  --muted: #b8b4a7;
  --accent: #f3c94f;
  --border: #343329;
  --max: 920px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a { color: var(--accent); }
header, main, footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}
header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.brand {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
}
nav, .links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
nav a, .links a { text-decoration: none; }
main { padding: 52px 0 72px; }
h1 {
  margin: 8px 0 20px;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 1.1;
}
h2 { margin-top: 40px; line-height: 1.25; }
h3 { margin-top: 28px; line-height: 1.3; }
p, li { color: var(--muted); }
strong { color: var(--text); }
.card, .notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin: 20px 0;
}
.notice { border-left: 4px solid var(--accent); }
.button {
  display: inline-block;
  background: var(--accent);
  color: #17160f;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
}
.meta, .eyebrow { font-size: .92rem; }
.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
th, td {
  border: 1px solid var(--border);
  padding: 12px;
  vertical-align: top;
  text-align: left;
}
th { background: var(--surface); }
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 48px;
  color: var(--muted);
}
@media (max-width: 650px) {
  header { flex-direction: column; }
  table { display: block; overflow-x: auto; }
}
