:root {
  --accent: #00a884;
  --bg: #0b141a;
  --bg-card: #111b21;
  --bg-soft: #182229;
  --text: #e9edef;
  --text-muted: #8696a0;
  --border: #222e35;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 0 20px 80px;
}
.wrap { max-width: 820px; margin: 0 auto; }
header.top {
  display: flex; align-items: center; gap: 12px;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.logo {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #008f72);
  display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: 20px;
}
.brand { font-size: 20px; font-weight: 700; }
.brand small { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted); }
h1 { font-size: 30px; line-height: 1.2; margin: 0 0 6px; }
.updated { color: var(--text-muted); font-size: 14px; margin: 0 0 32px; }
h2 { font-size: 21px; margin: 40px 0 12px; color: var(--accent); }
h3 { font-size: 17px; margin: 24px 0 8px; }
p, li { color: var(--text); }
a { color: var(--accent); }
ul { padding-left: 22px; }
li { margin: 6px 0; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 18px 0;
}
.muted { color: var(--text-muted); }
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--text-muted); font-weight: 600; }
footer.bottom {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 14px;
}
.nav { margin-top: 8px; }
.nav a { margin-right: 18px; }
