:root {
  --bg:       #0e0e10;
  --surface:  #18181c;
  --border:   #2a2a32;
  --accent:   #c8a96e;
  --accent2:  #7eb8c8;
  --text:     #e8e4dc;
  --muted:    #7a7870;
  --tag-bg:   #1e2a2e;
  --tag-text: #7eb8c8;
  --radius:   6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Serif SC', serif;
  min-height: 100vh;
}

/* ── Header / logo（两页共用的骨架，内边距等差异放在各页 CSS 里） ── */
header {
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(14,14,16,.92);
  backdrop-filter: blur(12px);
}
.logo {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  white-space: nowrap;
}
.logo span { color: var(--accent2); }
