:root {
  --bg:#fff; --bg2:#f6f8fd; --text:#1a1a1a; --sub:#999; --meta:#9a9a9a;
  --desc:#555; --line:#f0f0f0; --nav:#ffffffe6; --accent:#4072E1;
  --accent-sh:rgba(64,114,225,.32); --chip:#eaeffc; --dot:#d5d5d5; --shadow:rgba(0,0,0,.12);
}
:root[data-theme="dark"] {
  --bg:#0e1116; --bg2:#151a22; --text:#e9edf2; --sub:#7c8698; --meta:#7c8698;
  --desc:#a7b0be; --line:#1e242e; --nav:#0e1116e6; --accent:#5b87f0;
  --accent-sh:rgba(91,135,240,.4); --chip:#1a2440; --dot:#39424f; --shadow:rgba(0,0,0,.5);
}
* { box-sizing:border-box; }
body {
  margin:0; background:var(--bg); color:var(--text);
  font-family:-apple-system,"PingFang SC","SF Pro Text",system-ui,sans-serif;
  transition:background .3s,color .3s;
}

.nav {
  position:sticky; top:0; z-index:10; display:flex; align-items:center; gap:12px;
  padding:15px clamp(16px,4vw,40px); background:var(--nav);
  backdrop-filter:blur(12px); border-bottom:1px solid var(--line);
}
.brand { font-weight:800; font-size:18px; margin-right:auto; }
.brand b { color:var(--accent); }
.tabs { display:flex; gap:6px; }
.tab {
  padding:7px 18px; border:none; border-radius:99px; cursor:pointer;
  font-weight:600; font-size:14px; background:transparent; color:var(--meta);
  font-family:inherit;
}
.tab.active { background:var(--accent); color:#fff; box-shadow:0 4px 12px var(--accent-sh); }
.theme-btn {
  margin-left:6px; width:34px; height:34px; border-radius:99px; cursor:pointer;
  border:1px solid var(--line); background:transparent; color:var(--text); font-size:15px;
}

.hero { text-align:center; padding:50px 20px 20px; }
.hero h1 { font-size:clamp(28px,5vw,36px); font-weight:800; margin:0 0 12px; }
.hero h1 span { color:var(--accent); }
.hero p { font-size:15px; color:var(--sub); margin:0; }

.status { text-align:center; color:var(--sub); padding:60px 20px; font-size:15px; }

.sec { padding:56px 20px; }
.sec:nth-of-type(even) { background:var(--bg2); }
.sec-in { max-width:680px; margin:0 auto; text-align:center; }
.sicon { width:76px; height:76px; border-radius:18px; box-shadow:0 4px 14px var(--shadow); }
.sname { font-size:26px; font-weight:800; margin:16px 0 6px; }
.smeta { display:flex; align-items:center; justify-content:center; gap:10px;
  font-size:13px; color:var(--meta); margin-bottom:14px; }
.srating { color:var(--accent); font-weight:700; background:var(--chip);
  padding:3px 10px; border-radius:99px; }
.sdesc { font-size:16px; line-height:1.7; color:var(--desc); margin:0 auto 26px; max-width:560px; }

.shots { position:relative; margin:0 auto 28px; }
.shots-track { display:flex; overflow-x:auto; scroll-snap-type:x mandatory;
  scrollbar-width:none; border-radius:16px; }
.shots-track::-webkit-scrollbar { display:none; }
.shots-track img { width:100%; flex:0 0 100%; aspect-ratio:8/5; object-fit:cover;
  scroll-snap-align:center; border-radius:16px; box-shadow:0 10px 30px var(--shadow); }
.dots { display:flex; justify-content:center; gap:7px; margin-top:14px; }
.dots i { width:7px; height:7px; border-radius:99px; background:var(--dot); transition:.2s; }
.dots i.on { width:20px; background:var(--accent); }

.sget { display:inline-flex; align-items:center; gap:8px; text-decoration:none;
  background:var(--accent); color:#fff; font-size:15px; font-weight:600;
  padding:12px 32px; border-radius:99px; box-shadow:0 8px 20px var(--accent-sh); }
.sget svg { width:16px; height:16px; fill:currentColor; }

.footer { text-align:center; padding:40px 20px; color:var(--sub); font-size:13px;
  border-top:1px solid var(--line); }
.footer a { color:var(--sub); text-decoration:none; }
.footer a:hover { color:var(--accent); }
.beian { display:flex; align-items:center; justify-content:center; gap:5px; }
.beian img { height:16px; }
