*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0B0A09;
  --text: #F2EDE3;
  --text-muted: rgba(255, 255, 255, 0.60);
  --text-subtle: rgba(255, 255, 255, 0.48);
  --ivory: #F2EDE3;
  --gold: #C8A35F;
  --gold-bright: #DFC08A;
  --gold-border: rgba(200, 163, 95, 0.28);
  --border: rgba(242, 237, 227, 0.10);
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
::selection {
  background: rgba(200, 163, 95, 0.30);
  color: var(--text);
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 88px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 56px;
  transition: color 0.25s ease;
}
.back-link:hover {
  color: var(--gold-bright);
}
.back-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 58px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 14px;
}
.updated {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-subtle);
  margin-bottom: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
h2 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ivory);
  margin: 44px 0 14px;
}
p, li {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
}
li { margin-bottom: 10px; }
ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}
strong {
  color: var(--text);
  font-weight: 600;
}
code {
  font-size: 13px;
  color: var(--gold-bright);
}
a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(200, 163, 95, 0.4);
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}
a:hover {
  color: var(--gold-bright);
  text-decoration-color: var(--gold-bright);
}
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
}

.data-table th,
.data-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  color: var(--text-muted);
}

.data-table th {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold);
  background: rgba(200, 163, 95, 0.04);
}

footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 56px;
  text-align: center;
}

.footer-note {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.footer-note a {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-note a:hover {
  text-decoration: none;
  color: var(--gold);
}
