:root {
  --bg: #fff;
  --surface: #f8f9fa;
  --border: #dadce0;
  --text: #202124;
  --muted: #5f6368;
  --accent: #1a73e8;
  --accent-soft: rgba(26, 115, 232, 0.08);
  --ufan-prose: #3c4043;
  --ufan-label: #80868b;
  --ufan-rule: rgba(0, 0, 0, 0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding: 2rem 1.25rem 3rem;
}
.wrap { max-width: 44rem; margin: 0 auto; }
h1 { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 0.35rem; }
h2 { font-size: 1.15rem; font-weight: 600; margin: 2rem 0 0.6rem; color: var(--accent); border-bottom: 1px solid var(--border); padding-bottom: 0.35rem; }
h3 { font-size: 1.02rem; font-weight: 600; margin: 1.5rem 0 0.4rem; color: var(--text); }
p { margin: 0.6rem 0; }
ul, ol { padding-left: 1.4rem; margin: 0.5rem 0; }
li { margin: 0.3rem 0; }
strong { color: var(--text); }
em { color: var(--muted); font-style: italic; }
blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.2rem 0;
  padding: 0.6rem 1rem;
  background: var(--surface);
  border-radius: 0 6px 6px 0;
  color: var(--text);
  font-style: italic;
}
code {
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.88em;
  background: var(--surface);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--accent);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0.75rem 0 1.25rem;
}
thead th {
  text-align: left;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
tbody td {
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid var(--border);
  vertical-align: baseline;
}
tbody tr:hover { background: var(--surface); }
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.back { margin-top: 1.5rem; font-size: 0.9rem; }
.back a { color: var(--muted); }
.date-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
