:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --text: #f5f5f5;
  --muted: #a1a1a1;
  --border: #262626;
  --accent: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 56px 24px 96px; }

header.site { margin-bottom: 48px; }
.mark {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--accent);
}

h1 { font-size: 34px; line-height: 1.2; margin: 0 0 8px; font-weight: 700; }
h2 { font-size: 21px; margin: 44px 0 12px; font-weight: 650; }
h3 { font-size: 17px; margin: 28px 0 8px; font-weight: 650; color: var(--text); }
p, li { color: var(--text); }
.updated { color: var(--muted); font-size: 15px; margin: 0 0 8px; }
a { color: var(--accent); }
ul { padding-left: 22px; }
li { margin-bottom: 8px; }

.note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
}
.note p:first-child { margin-top: 0; }
.note p:last-child { margin-bottom: 0; }

.tablewrap { overflow-x: auto; margin: 20px 0; }
table { border-collapse: collapse; width: 100%; font-size: 15px; min-width: 480px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }

footer.site {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 15px;
}
footer.site a { color: var(--muted); margin-right: 18px; }
