:root {
  --bg: #08060F;
  --surface: #15121F;
  --text: #ECEAF3;
  --muted: #A09CB0;
  --accent: #7C4DFF;
  --border: #262233;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 17px;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 48px 22px 96px; }
header.site { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
header.site .brand { font-weight: 700; font-size: 20px; letter-spacing: .3px; }
header.site .brand span { color: var(--accent); }
h1 { font-size: 30px; line-height: 1.25; margin: 0 0 8px; }
h2 { font-size: 21px; margin: 38px 0 12px; color: #fff; }
h3 { font-size: 17px; margin: 24px 0 8px; color: #fff; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
th, td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
th { background: var(--surface); color: #fff; }
blockquote { margin: 18px 0; padding: 14px 18px; background: var(--surface); border-left: 3px solid var(--accent); border-radius: 8px; color: var(--muted); }
hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
ul, ol { padding-left: 22px; }
li { margin: 6px 0; }
footer.site { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }
footer.site nav a { margin-right: 16px; line-height: 2.2; }
