/* 这一页在用的那部分（原文件是从别的页面整份搬过来的，其余规则已按「这页用不到」削掉）。
   ⛔ 别把删掉的部分抄回来：那批 class 属于**不公开的内部页面**，
      CSS 和注释在 view-source 里都是明文，等于把内部页面的结构写在公共画廊上。
   ⚠ 要削/要校验跑 `node tools/trim-styles.mjs public/styles.css`（带反向断言，会拦「削过头」）。 */
:root {
  --bg: #eff3ec;
  --paper: #fcfbf7;
  --ink: #2d2626;
  --muted: #6b6771;
  --line: rgba(27, 34, 48, 0.12);
  --line-strong: rgba(27, 34, 48, 0.24);
  --salmon: #ef7a5c;
  --teal: #3ca99b;
  --acid: #d8ea4f;
  --sky: #6bb0ff;
  --rose: #f2b5ca;
  --gold: #f2c75c;
  --pink: #f2b5ca;
  --shadow: 0 18px 48px rgba(53, 42, 33, 0.12);
  --shadow-soft: 0 10px 28px rgba(53, 42, 33, 0.08);
  --width: min(960px, calc(100vw - 28px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(243, 208, 133, 0.28), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(189, 231, 226, 0.26), transparent 28%),
    linear-gradient(180deg, #f8f7f1 0%, var(--bg) 100%);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.page-wash { position: fixed; inset: 0; pointer-events: none; }

h1, h2, h3, p { margin: 0; }

.vote-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px max(14px, calc((100vw - 960px) / 2));
  background: rgba(252, 250, 246, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--acid);
  color: #2d2a23;
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
  font-weight: 900;
}

.brand-text p {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}

.brand-text h1 { font-size: 17px; line-height: 1.2; font-weight: 900; }

.progress-pill {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(216, 234, 79, 0.2);
  font-family: "IBM Plex Mono", "Noto Sans SC", monospace;
  font-size: 12px;
  font-weight: 700;
}

.vote-shell {
  width: var(--width);
  margin: 0 auto;
  padding: 18px 0 140px;
  display: grid;
  gap: 16px;
}

.card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.card h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 26px;
  line-height: 1.15;
}

@media (max-width: 640px) {
.card { padding: 16px; }
  .card h2 { font-size: 22px; }
}
