/* LazyPickaxe 官网样式
   取色全部来自游戏 js/config.js 的 palette,不另配一套 ——
   官网和游戏摆在一起时颜色对得上才像同一个东西。
   版式刻意走"规格书"路线(表格 / 点线引导 / 编号轨道),
   而不是常见的卡片网格 + emoji 图标。 */

:root {
  --navy: #2e3870;
  --navy-d: #232a5c;
  --navy-l: #475498;
  --ink: #1b1f33;
  --gold: #f7d97a;
  --gold-d: #e8b73a;
  --cream: #f2f0e8;
  --mute: #a8a99f;
  --dirt: #6b4a2f;
  --grass: #4e7a3c;
  --line: rgba(247, 217, 122, .22);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font: 16px/1.72 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- 顶栏:法务入口就放在这里(不是页脚) ---------- */
.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(27, 31, 51, .93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.top .wrap { display: flex; align-items: center; gap: 18px; height: 62px; }
.mark { display: flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 800; letter-spacing: .3px; }
.mark img { width: 30px; height: 30px; image-rendering: pixelated; }
.mark:hover { text-decoration: none; }
.top nav { margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.top nav a {
  color: var(--mute); font-size: 14px; font-weight: 600;
  padding: 7px 11px; border-radius: 6px;
}
.top nav a:hover { color: var(--cream); background: rgba(255, 255, 255, .06); text-decoration: none; }
.top nav a.on { color: var(--ink); background: var(--gold); }
.top nav .div { width: 1px; height: 20px; background: var(--line); margin: 0 8px; }

/* ---------- HERO:左文右图的不对称栏,不是居中大标题 ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 78% 8%, rgba(247, 217, 122, .10), transparent 60%),
    linear-gradient(180deg, #263066 0%, #1e2450 55%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
}
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding-top: 74px; padding-bottom: 74px; }
.kick { font-size: 12px; letter-spacing: 3px; font-weight: 800; color: var(--gold-d); text-transform: uppercase; }
.hero h1 { font-size: 46px; line-height: 1.12; margin: 14px 0 16px; letter-spacing: -.5px; }
.hero p.lead { font-size: 17px; color: #d3d2c7; margin: 0 0 22px; }
.hero .shot { width: 100%; display: block; border: 1px solid var(--line); box-shadow: 0 22px 48px rgba(0, 0, 0, .5); }

/* 事实条:数字 + 说明,横排 */
.facts { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.facts div { min-width: 96px; }
.facts b { display: block; font-size: 26px; color: var(--gold); line-height: 1.2; }
.facts span { font-size: 12.5px; color: var(--mute); }

/* ---------- 通用分节 ---------- */
section { padding: 74px 0; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.shead { margin-bottom: 34px; max-width: 720px; }
.shead .kick { color: var(--gold-d); }
.shead h2 { font-size: 30px; margin: 10px 0 8px; letter-spacing: -.3px; }
.shead p { color: var(--mute); margin: 0; }

/* ---------- 循环轨道:编号节点串在一条线上 ---------- */
.rail { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.rail::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 26px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.step { position: relative; padding-top: 0; }
.step .n {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-d); border: 2px solid var(--gold-d);
  color: var(--gold); font-weight: 800; font-size: 19px;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.step h3 { font-size: 16px; margin: 0 0 6px; }
.step p { font-size: 13.5px; color: var(--mute); margin: 0; }

/* ---------- 系统表:真表格,不是卡片 ---------- */
table.sys { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.sys th, table.sys td { text-align: left; padding: 13px 14px; border-bottom: 1px solid rgba(255, 255, 255, .07); vertical-align: top; }
table.sys th { color: var(--gold-d); font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; border-bottom-color: var(--line); }
table.sys td:first-child { color: var(--cream); font-weight: 700; white-space: nowrap; }
table.sys td:last-child { color: var(--mute); }
table.sys tr:hover td { background: rgba(255, 255, 255, .03); }

/* ---------- 规格行:点线引导 ---------- */
.spec { columns: 2; column-gap: 54px; }
.spec .row {
  display: flex; align-items: baseline; gap: 8px;
  break-inside: avoid; padding: 9px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, .12);
}
.spec .row .k { color: var(--mute); font-size: 14px; }
.spec .row .dots { flex: 1; border-bottom: 1px dotted rgba(255, 255, 255, .18); transform: translateY(-4px); }
.spec .row .v { color: var(--gold); font-weight: 700; font-size: 14.5px; white-space: nowrap; }

/* ---------- 截图胶片条:横向滚动,不是网格画廊 ---------- */
.strip { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; }
.strip figure { margin: 0; flex: 0 0 min(78vw, 620px); scroll-snap-align: start; }
.strip img { width: 100%; display: block; border: 1px solid var(--line); }
.strip figcaption { font-size: 13px; color: var(--mute); padding-top: 10px; }
.strip figcaption b { color: var(--cream); display: block; font-size: 14.5px; }
.strip::-webkit-scrollbar { height: 8px; }
.strip::-webkit-scrollbar-thumb { background: var(--navy-l); border-radius: 4px; }

/* ---------- 隐私一览:一行行的勾 ---------- */
.priv { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px 26px; }
.priv div { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.priv .tick { color: var(--gold); font-weight: 800; flex: none; }

/* ---------- FAQ:定义列表 ---------- */
dl.faq { margin: 0; }
dl.faq dt { font-weight: 700; font-size: 16px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .08); }
dl.faq dd { margin: 6px 0 20px; color: var(--mute); font-size: 14.5px; }

/* ---------- 文档页 ---------- */
.doc { padding: 56px 0 84px; }
.doc .wrap { max-width: 800px; }
.doc h1 { font-size: 34px; margin: 0 0 6px; }
.doc .updated { color: var(--mute); font-size: 13.5px; margin: 0 0 28px; }
.doc h2 { font-size: 19px; margin: 34px 0 10px; color: var(--gold); }
.doc p, .doc li { font-size: 15px; color: #d8d7cd; }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 6px; }
.box {
  background: rgba(71, 84, 152, .22); border: 1px solid var(--line);
  border-left: 4px solid var(--gold-d);
  padding: 16px 18px; margin: 20px 0; font-size: 15px;
}
.doc table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 14px 0; }
.doc table th, .doc table td { text-align: left; padding: 10px 12px; border: 1px solid rgba(255, 255, 255, .1); vertical-align: top; }
.doc table th { background: rgba(71, 84, 152, .25); color: var(--gold-d); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- 页脚 ---------- */
footer { padding: 40px 0 56px; color: var(--mute); font-size: 13.5px; }
footer .cols { display: flex; gap: 46px; flex-wrap: wrap; margin-bottom: 26px; }
footer b { color: var(--cream); display: block; margin-bottom: 8px; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; }
footer a { color: var(--mute); display: block; }
footer a:hover { color: var(--gold); }
footer .rule { border-top: 1px solid rgba(255, 255, 255, .08); padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- 窄屏 ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; padding-top: 48px; padding-bottom: 48px; }
  .hero h1 { font-size: 34px; }
  .rail { grid-template-columns: 1fr 1fr; }
  .rail::before { display: none; }
  .spec { columns: 1; }
  section { padding: 52px 0; }
  .top .wrap { height: auto; padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap; }
  .top nav { margin-left: 0; width: 100%; }
}
