:root {
  --bg: #0e0f13;
  --surface: #171922;
  --text: #f3f4f8;
  --muted: #b9bdcc;
  --accent: #ffd24a;
  --border: #2a2d3a;
  --link: #ffd24a;
}
* { 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: 32px 22px 80px; }
header.site { display: flex; align-items: center; gap: 12px; padding: 22px; border-bottom: 1px solid var(--border); }
header.site a { color: var(--text); text-decoration: none; font-weight: 700; font-size: 20px; letter-spacing: 0.2px; }
h1 { font-size: 30px; line-height: 1.2; margin: 24px 0 6px; }
h2 { font-size: 21px; margin: 34px 0 8px; }
.updated { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
p, li { color: var(--text); }
.muted { color: var(--muted); }
a { color: var(--link); }
ul { padding-left: 22px; }
li { margin: 6px 0; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; margin: 18px 0; }
.callout { border-left: 3px solid var(--accent); background: var(--surface); padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 18px 0; }
footer { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 18px; color: var(--muted); font-size: 14px; }
footer a { color: var(--muted); }
.home-hero { text-align: center; padding: 60px 0 30px; }
.home-hero h1 { font-size: 40px; }
.home-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.btn { display: inline-block; padding: 11px 18px; border-radius: 10px; border: 1px solid var(--border); color: var(--text); text-decoration: none; background: var(--surface); }
