/* Tufte 风格：窄内容、serif、宽松行高，让阅读回到正文本身 */

:root {
  --max-width: 680px;
  --serif: Georgia, "Songti SC", "SimSun", serif;
  --text: #111;
  --muted: #666;
  --rule: #e5e5e5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
}

/* 顶部导航：极简横排，下边线分隔 */
.topnav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
}

.topnav a:hover,
.topnav a.active {
  color: var(--text);
}

/* 主内容区：窄居中 */
#app {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 96px;
}

/* 排版基础 */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin: 1.5em 0 0.5em;
}

h1 { font-size: 1.8em; }
h2 { font-size: 1.4em; }

p { margin: 0 0 1em; }

a { color: var(--text); }

code, pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
}

pre {
  background: #fafafa;
  padding: 12px 16px;
  border-radius: 4px;
  overflow-x: auto;
}
