:root {
  --bg: #131417;
  --bg-deep: #0c0d10;
  --card: #1c1e24;
  --line: #2c2f37;
  --text: #f2efe6;
  --muted: #9d9ea4;
  --gold: #d9b45f;
  --gold-bright: #f0cf7d;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-ui: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
header {
  display: flex; align-items: center; gap: 30px;
  padding: 14px 28px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: .02em;
  color: #fff; text-decoration: none; display: flex; align-items: baseline; line-height: 1;
}
.logo .seven { color: var(--gold); font-size: 34px; margin-left: 1px; }
.back {
  margin-left: auto; color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600;
}
.back:hover { color: var(--gold-bright); }
main { max-width: 800px; margin: 0 auto; padding: 48px 28px 80px; }
h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 42px;
  letter-spacing: .02em; text-transform: uppercase; line-height: 1; margin-bottom: 8px;
}
.updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1.05;
  margin: 36px 0 12px;
}
p { margin: 0 0 14px; color: var(--text); }
p.note { color: var(--muted); font-size: 14px; }
ul { margin: 0 0 14px 22px; }
li { margin-bottom: 6px; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
table { border-collapse: collapse; width: 100%; margin: 0 0 14px; font-size: 14px; }
th, td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
th { font-weight: 600; background: var(--card); }
footer {
  border-top: 1px solid var(--line); padding: 28px; text-align: center;
  color: var(--muted); font-size: 13px; line-height: 1.7;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--gold-bright); }
