/* Shared styling for the static pages (privacy, terms, fair, publisher, help, changelog). Midnight palette (2026-09-26, the owner's call): pure black, hairlines, acid green for the active state.
   Shared styling for the privacy policy and the terms. Plain CSS, no build step: these pages are
   copied verbatim out of `public/` by the web export, so they must stand on their own. */
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0; padding: 0 20px 80px;
  background: #000000; color: #ffffff;
  font: 16px/1.75 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
main { max-width: 760px; margin: 0 auto; }
header { padding: 48px 0 8px; }
h1 { font-size: 30px; line-height: 1.25; margin: 0 0 6px; }
h2 { font-size: 20px; margin: 34px 0 10px; color: #ffffff; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,0.1); }
h3 { font-size: 16px; margin: 22px 0 6px; }
p, li { color: #d4d0e6; }
li { margin: 5px 0; }
a { color: #5bc8ff; }
code { background: #1d1d21; border: 1px solid rgba(255,255,255,0.1); padding: 1px 6px; border-radius: 5px; font-size: 14px; }
.meta { color: #a79ec4; font-size: 14px; margin: 0; }
.fill { background: #4a1d1d; color: #ffb4b4; padding: 1px 6px; border-radius: 5px; font-weight: 600; }
.note { background: #161619; border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid #99b826; border-radius: 10px; padding: 12px 16px; margin: 18px 0; }
.toggle { display: flex; gap: 8px; margin: 18px 0 0; }
.toggle button {
  background: #161619; color: #d4d0e6; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 6px 16px; font: inherit; font-size: 14px; cursor: pointer;
}
.toggle button[aria-pressed="true"] { background: #99b826; color: #1c2207; border-color: #99b826; font-weight: 600; }
footer { margin-top: 56px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); color: #a79ec4; font-size: 14px; }

/* 链上地址这类「要能整段复制」的东西。窄屏上必须能断行，否则一个 44 字的地址会把整页撑宽。 */
.mono {
  font: 14px/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: #161619; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 10px 12px; word-break: break-all; user-select: all;
}
