/* =========================================================
   黑料星报VIP八卦内参 — 核心样式表
   设计：好莱坞小报 Tabloid + 奢华名利场 Vanity Fair
   主色 #D4AF37 名利场金 / 辅 #E60000 小报红 / #1A1A1A 黑胶灰
   背景 #FAFAFA 铜版纸白 / 卡片 #FFFFFF 金线边框 / 正文 #333
   ========================================================= */

:root {
  --gold: #D4AF37;
  --gold-soft: #e8d28a;
  --gold-deep: #a8851f;
  --red: #E60000;
  --ink: #1A1A1A;
  --paper: #FAFAFA;
  --card: #FFFFFF;
  --text: #333333;
  --muted: #6b6b6b;
  --line: rgba(212, 175, 55, 0.35);
  --shadow: 0 10px 40px rgba(26, 26, 26, 0.12);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.28);
  --maxw: 1240px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --serif: "Noto Serif SC", "Songti SC", serif;
  --display: "Playfair Display", "Noto Serif SC", serif;
  --label: "Oswald", "Noto Sans SC", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--serif);
  color: var(--text);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(212,175,55,0.06), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(230,0,0,0.04), transparent 26%);
  line-height: 1.85;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- 闪光灯爆闪转场 ---------- */
#flash-overlay {
  position: fixed; inset: 0; background: #fff; z-index: 9999;
  opacity: 0; pointer-events: none;
}
#flash-overlay.flash {
  animation: cameraFlash 0.55s var(--ease-out) forwards;
}
@keyframes cameraFlash {
  0% { opacity: 0; }
  12% { opacity: 0.95; }
  30% { opacity: 0.2; }
  45% { opacity: 0.85; }
  100% { opacity: 0; }
}

/* ---------- 顶部速报条 ---------- */
.breaking-bar {
  background: var(--ink); color: var(--gold);
  font-family: var(--label); letter-spacing: 0.06em;
  font-size: 13px; overflow: hidden; white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.breaking-bar .marquee {
  display: inline-block; padding: 8px 0;
  animation: scrollLeft 28s linear infinite;
}
.breaking-bar .marquee span { margin: 0 38px; }
.breaking-bar .tag {
  color: var(--paper); background: var(--red);
  padding: 2px 10px; margin-right: 14px; font-weight: 700;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- 头部 / 导航 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 20px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; }
.brand .brand-name {
  font-family: var(--display); font-weight: 900; font-style: italic;
  font-size: 26px; color: var(--ink); letter-spacing: 0.01em; line-height: 1;
}
.brand .brand-sub {
  font-family: var(--label); font-size: 11px; letter-spacing: 0.32em;
  color: var(--gold-deep); display: block; margin-top: 2px;
}
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  font-family: var(--label); font-size: 15px; letter-spacing: 0.04em;
  padding: 8px 13px; color: var(--ink); position: relative; transition: color .2s var(--ease-out);
}
.main-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.main-nav a:hover { color: var(--gold-deep); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-search, .nav-toggle {
  background: none; border: 1px solid var(--ink); color: var(--ink);
  width: 40px; height: 40px; display: grid; place-items: center; font-size: 18px;
  transition: all .2s var(--ease-out);
}
.btn-search:hover, .nav-toggle:hover { background: var(--ink); color: var(--gold); }
.nav-toggle { display: none; }

.btn-vip {
  font-family: var(--label); letter-spacing: 0.06em; font-size: 14px;
  background: var(--ink); color: var(--gold); padding: 9px 18px;
  border: 1px solid var(--gold); transition: all .2s var(--ease-out);
}
.btn-vip:hover { background: var(--gold); color: var(--ink); transform: scale(0.97); }

/* ---------- 通用按钮 ---------- */
.btn {
  display: inline-block; font-family: var(--label); letter-spacing: 0.05em;
  padding: 12px 26px; cursor: pointer; border: none; font-size: 15px;
  transition: transform .16s var(--ease-out), box-shadow .2s var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); font-weight: 700; box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: 0 12px 38px rgba(212,175,55,.45); }
.btn-red { background: var(--red); color: #fff; }
.btn-ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--gold); }

/* ---------- 区块标题 ---------- */
.section { padding: 64px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 30px; border-bottom: 3px solid var(--ink); padding-bottom: 12px; }
.section-head .eyebrow {
  font-family: var(--label); font-size: 13px; letter-spacing: 0.34em;
  color: var(--red); display: block; margin-bottom: 6px; text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--display); font-style: italic; font-weight: 900;
  font-size: clamp(28px, 4vw, 44px); color: var(--ink); line-height: 1.05;
}
.section-head .more-link { font-family: var(--label); color: var(--gold-deep); white-space: nowrap; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.section-head .more-link:hover { color: var(--red); }

/* ---------- Hero 闪光灯爆闪区 ---------- */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; border-bottom: 4px solid var(--gold);
}
.hero .hero-bg { position: absolute; inset: 0; }
.hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.45) 45%, rgba(10,10,10,.2) 100%);
}
.hero .flash-burst {
  position: absolute; z-index: 2; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9), transparent 65%);
  top: 18%; left: 8%; mix-blend-mode: screen; opacity: 0;
  animation: burst 4.5s infinite var(--ease-out);
}
.hero .flash-burst.b2 { top: 12%; left: 62%; animation-delay: 2.2s; }
@keyframes burst { 0%,80%,100% { opacity: 0; transform: scale(.4);} 86% {opacity: .9; transform: scale(1);} 92%{opacity:.2;} }
.hero-content { position: relative; z-index: 3; padding: 50px 20px 64px; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero .kicker {
  display: inline-block; font-family: var(--label); letter-spacing: 0.12em;
  background: var(--red); color: #fff; padding: 6px 16px; font-size: 14px; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--display); font-style: italic; font-weight: 900;
  font-size: clamp(34px, 6.2vw, 76px); line-height: 1.02; max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero .hero-deck { font-size: clamp(16px, 2vw, 20px); max-width: 56ch; margin-top: 18px; color: #f0e9d6; }
.hero .hero-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 24px; font-family: var(--label); font-size: 14px; letter-spacing: .06em; color: var(--gold-soft); }
.hero .hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 卡片网格 ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }
.gossip-card {
  background: var(--card); border: 1px solid var(--line); position: relative;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.gossip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gossip-card .thumb { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.gossip-card .thumb img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05);
  transition: transform .6s var(--ease-out), filter .5s var(--ease-out);
}
.gossip-card:hover .thumb img { transform: scale(1.08); filter: grayscale(0%); }
.gossip-card .cat-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--label); font-size: 12px; letter-spacing: .08em;
  background: var(--ink); color: var(--gold); padding: 4px 11px;
}
.gossip-card .excl {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  font-family: var(--display); font-style: italic; font-weight: 900; font-size: 18px;
  color: rgba(255,255,255,.55); letter-spacing: .04em; pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.gossip-card .card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.gossip-card h3 { font-family: var(--display); font-style: italic; font-weight: 700; font-size: 22px; line-height: 1.2; color: var(--ink); }
.gossip-card .dek { color: var(--muted); font-size: 14.5px; margin-top: 10px; flex: 1; }
.gossip-card .card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; font-family: var(--label); font-size: 12.5px; color: var(--gold-deep); border-top: 1px dashed var(--line); padding-top: 12px; }

/* ---------- 可信度温度计 ---------- */
.thermo-list { display: grid; gap: 18px; }
.thermo-item {
  display: grid; grid-template-columns: 46px 1fr auto; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--line); padding: 16px 20px;
}
.thermo-rank { font-family: var(--display); font-style: italic; font-weight: 900; font-size: 32px; color: var(--gold); }
.thermo-body h4 { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); }
.thermo-body p { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.thermo-gauge { width: 150px; }
.thermo-track { height: 14px; background: #ededed; border-radius: 20px; overflow: hidden; border: 1px solid #ddd; position: relative; }
.thermo-fill { height: 100%; width: 0; border-radius: 20px; background: linear-gradient(90deg, var(--gold), var(--red)); transition: width 1.2s var(--ease-out); }
.thermo-num { font-family: var(--label); font-size: 13px; color: var(--red); margin-top: 5px; display: block; text-align: right; }

/* ---------- 前任连连看连线图 ---------- */
.ex-map { background: var(--ink); border: 1px solid var(--gold); padding: 32px 22px; position: relative; overflow: hidden; }
.ex-map h3 { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 26px; margin-bottom: 6px; }
.ex-map p.hint { color: #cbb86a; font-family: var(--label); font-size: 13px; letter-spacing: .05em; margin-bottom: 22px; }
.ex-stage { position: relative; min-height: 360px; }
.ex-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ex-svg line { stroke: var(--gold); stroke-width: 2; stroke-dasharray: 6 6; opacity: .55; transition: opacity .3s, stroke .3s; }
.ex-svg line.active { stroke: var(--red); opacity: 1; stroke-width: 3; }
.ex-node {
  position: absolute; transform: translate(-50%, -50%); width: 96px; text-align: center; cursor: pointer; z-index: 2;
}
.ex-node .avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto;
  border: 3px solid var(--gold); overflow: hidden; transition: transform .2s var(--ease-out), border-color .2s;
  background: #2a2a2a;
}
.ex-node .avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); }
.ex-node:hover .avatar { transform: scale(1.1); border-color: var(--red); }
.ex-node.center .avatar { width: 92px; height: 92px; border-color: var(--red); box-shadow: 0 0 0 4px rgba(230,0,0,.25); }
.ex-node span { display: block; color: var(--gold-soft); font-family: var(--label); font-size: 13px; margin-top: 8px; }

/* ---------- 颜值对比滑块 ---------- */
.compare-slider { position: relative; max-width: 640px; margin: 0 auto; aspect-ratio: 4/3; overflow: hidden; border: 3px solid var(--gold); user-select: none; }
.compare-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-after { clip-path: inset(0 0 0 50%); }
.compare-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold); transform: translateX(-50%); z-index: 3; }
.compare-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; background: var(--ink); border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); display: grid; place-items: center; cursor: ew-resize; z-index: 4; font-size: 18px; }
.compare-tag { position: absolute; bottom: 12px; z-index: 3; font-family: var(--label); font-size: 13px; letter-spacing: .1em; background: rgba(26,26,26,.78); color: var(--gold); padding: 4px 12px; }
.compare-tag.left { left: 12px; } .compare-tag.right { right: 12px; }

/* ---------- 付费八卦盲盒 ---------- */
.blindbox { background: linear-gradient(135deg, #1f1c12, var(--ink)); border: 1px solid var(--gold); padding: 30px; color: #fff; position: relative; overflow: hidden; }
.blindbox h3 { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 26px; margin-bottom: 14px; }
.blindbox .blur-text { filter: blur(6px); transition: filter .6s var(--ease-out); color: #f0e9d6; line-height: 2; }
.blindbox.unlocked .blur-text { filter: blur(0); }
.blindbox .mosaic { position: relative; margin: 16px 0; overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--line); }
.blindbox .mosaic img { width: 100%; height: 100%; object-fit: cover; filter: blur(18px) grayscale(60%); transform: scale(1.1); transition: filter .6s var(--ease-out), transform .6s var(--ease-out); }
.blindbox.unlocked .mosaic img { filter: blur(0) grayscale(0); transform: scale(1); }
.blindbox .lock-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.blindbox .coin { font-family: var(--label); color: var(--gold); font-size: 14px; }
.blindbox .lock-hint { font-family: var(--label); font-size: 12px; color: #b9a96a; margin-top: 12px; }

/* ---------- 放大镜图集 ---------- */
.magnifier-wrap { position: relative; border: 3px solid var(--gold); overflow: hidden; cursor: none; max-width: 760px; margin: 0 auto; }
.magnifier-wrap img.base { width: 100%; display: block; }
.magnifier-lens {
  position: absolute; width: 170px; height: 170px; border: 3px solid var(--gold);
  border-radius: 50%; pointer-events: none; display: none; z-index: 5;
  box-shadow: 0 0 0 3px rgba(26,26,26,.5), 0 8px 24px rgba(0,0,0,.4);
  background-repeat: no-repeat;
}
.magnifier-hint { text-align: center; font-family: var(--label); color: var(--gold-deep); font-size: 13px; margin-top: 12px; letter-spacing: .05em; }

/* ---------- 撕纸分隔 ---------- */
.torn-divider { height: 34px; background: var(--ink); position: relative; margin: 0; }
.torn-divider::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 18px;
  background: var(--paper);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='18' viewBox='0 0 120 18'%3E%3Cpath d='M0 18 L0 6 L8 10 L16 3 L24 11 L33 5 L41 12 L50 4 L58 11 L67 6 L75 13 L84 5 L92 12 L101 6 L110 13 L120 5 L120 18 Z' fill='black'/%3E%3C/svg%3E") repeat-x bottom / 120px 18px;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='18' viewBox='0 0 120 18'%3E%3Cpath d='M0 18 L0 6 L8 10 L16 3 L24 11 L33 5 L41 12 L50 4 L58 11 L67 6 L75 13 L84 5 L92 12 L101 6 L110 13 L120 5 L120 18 Z' fill='black'/%3E%3C/svg%3E") repeat-x bottom / 120px 18px;
}

/* ---------- VIP 订阅条 ---------- */
.vip-band { background: var(--ink); color: #fff; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.vip-band .inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; padding: 56px 20px; max-width: var(--maxw); margin: 0 auto; }
.vip-band h2 { font-family: var(--display); font-style: italic; color: var(--gold); font-size: clamp(28px,4vw,46px); line-height: 1.08; }
.vip-band p { color: #ddd; margin-top: 14px; }
.vip-band form { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.vip-band input { flex: 1; min-width: 200px; padding: 13px 16px; border: 1px solid var(--gold); background: #2a2618; color: #fff; font-family: var(--serif); }
.vip-pricing { background: #221f15; border: 1px solid var(--gold); padding: 28px; text-align: center; }
.vip-pricing .price { font-family: var(--display); font-style: italic; font-size: 54px; color: var(--gold); }
.vip-pricing .price small { font-size: 18px; color: #bbb; }
.vip-pricing ul { text-align: left; margin: 18px 0; }
.vip-pricing li { padding: 7px 0; border-bottom: 1px dashed rgba(212,175,55,.25); color: #e9e3cf; font-size: 14.5px; }
.vip-pricing li::before { content: "★ "; color: var(--gold); }

/* ---------- 文章正文 ---------- */
.article { background: var(--card); border: 1px solid var(--line); padding: 40px; box-shadow: var(--shadow); }
.article-header h1 { font-family: var(--display); font-style: italic; font-weight: 900; font-size: clamp(28px,4.5vw,50px); color: var(--ink); line-height: 1.08; }
.article .lede { font-size: 20px; color: #444; margin: 18px 0; font-style: italic; border-left: 4px solid var(--gold); padding-left: 18px; }
.article .byline { font-family: var(--label); font-size: 13px; color: var(--gold-deep); letter-spacing: .05em; margin-bottom: 22px; display: flex; gap: 18px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.article h2 { font-family: var(--display); font-style: italic; font-size: 28px; color: var(--ink); margin: 32px 0 12px; }
.article h3 { font-family: var(--display); font-size: 22px; color: var(--ink); margin: 24px 0 10px; }
.article p { margin: 14px 0; }
.article figure { margin: 26px 0; }
.article figure img { border: 1px solid var(--line); width: 100%; }
.article figcaption { font-family: var(--label); font-size: 13px; color: var(--muted); margin-top: 8px; text-align: center; }
.article blockquote { background: #faf6e8; border-left: 5px solid var(--red); padding: 16px 22px; margin: 22px 0; font-style: italic; color: #4a4a4a; }
.pull-quote { font-family: var(--display); font-style: italic; font-size: 26px; color: var(--gold-deep); text-align: center; margin: 32px 0; line-height: 1.3; }

/* ---------- 页面通用：内页大标题 ---------- */
.page-hero { background: var(--ink); color: #fff; padding: 64px 0 54px; position: relative; border-bottom: 4px solid var(--gold); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.15), transparent 50%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { font-family: var(--label); letter-spacing: .3em; color: var(--red); font-size: 13px; }
.page-hero h1 { font-family: var(--display); font-style: italic; font-weight: 900; font-size: clamp(32px,5.5vw,62px); margin: 10px 0; line-height: 1.04; }
.page-hero .deck { color: #ddd; max-width: 60ch; font-size: 18px; }

/* ---------- 面包屑 ---------- */
.breadcrumb { font-family: var(--label); font-size: 13px; color: var(--muted); padding: 16px 0; letter-spacing: .03em; }
.breadcrumb a { color: var(--gold-deep); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; color: #bbb; }

/* ---------- 内容布局 layout ---------- */
.layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 26px; }
.widget { background: var(--card); border: 1px solid var(--line); padding: 22px; }
.widget h4 { font-family: var(--display); font-style: italic; font-size: 21px; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 8px; margin-bottom: 14px; }
.widget ul li { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.widget ul li a:hover { color: var(--red); }
.widget .tag-cloud a { display: inline-block; font-family: var(--label); font-size: 13px; background: #f3eccf; color: var(--gold-deep); padding: 4px 11px; margin: 4px 4px 0 0; transition: all .2s; }
.widget .tag-cloud a:hover { background: var(--ink); color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); margin-bottom: 12px; background: var(--card); }
.faq-q { font-family: var(--display); font-style: italic; font-weight: 700; font-size: 18px; color: var(--ink); padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq-q::after { content: "+"; color: var(--gold); font-size: 24px; transition: transform .25s var(--ease-out); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-in-out); padding: 0 20px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; padding: 0 20px 18px; }

/* ---------- 信息块 / 规则说明 ---------- */
.info-block { background: var(--card); border: 1px solid var(--line); border-left: 5px solid var(--gold); padding: 24px 28px; margin: 22px 0; }
.info-block h3 { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.rule-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px dashed var(--line); }
.rule-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---------- 搜索页 ---------- */
.search-box { display: flex; gap: 10px; max-width: 640px; margin: 0 auto 12px; }
.search-box input { flex: 1; padding: 15px 18px; border: 2px solid var(--ink); font-size: 17px; font-family: var(--serif); }
.search-results { display: grid; gap: 16px; margin-top: 30px; }
.search-hit { background: var(--card); border: 1px solid var(--line); padding: 18px 22px; transition: transform .2s var(--ease-out); }
.search-hit:hover { transform: translateX(6px); border-left: 4px solid var(--gold); }
.search-hit h3 { font-family: var(--display); font-style: italic; font-size: 21px; color: var(--ink); }
.search-hit .url { font-family: var(--label); font-size: 12.5px; color: var(--gold-deep); margin-top: 4px; }
.search-hit p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
mark { background: var(--gold-soft); color: var(--ink); padding: 0 2px; }

/* ---------- APP 页 ---------- */
.app-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.app-hero .phone img { max-width: 340px; margin: 0 auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,.4)); }
.app-features { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 22px; }
.app-feature { background: var(--card); border: 1px solid var(--line); padding: 24px; }
.app-feature .ic { font-size: 30px; }
.app-feature h4 { font-family: var(--display); font-style: italic; font-size: 20px; margin: 10px 0 6px; color: var(--ink); }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.store-badge { display: flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; padding: 12px 20px; border: 1px solid var(--gold); }
.store-badge .big { font-family: var(--label); font-size: 17px; color: var(--gold); }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--ink); color: #cfcfcf; padding: 56px 0 28px; border-top: 4px solid var(--gold); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; }
.footer-brand .brand-name { font-family: var(--display); font-style: italic; font-weight: 900; font-size: 26px; color: var(--gold); }
.footer-brand p { font-size: 14px; margin-top: 12px; color: #aaa; max-width: 38ch; }
.site-footer h5 { font-family: var(--label); letter-spacing: .12em; color: var(--gold); margin-bottom: 14px; font-size: 15px; }
.site-footer li { padding: 6px 0; font-size: 14px; }
.site-footer li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(212,175,55,.2); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: #888; }
.disclaimer { background: #221f15; border: 1px dashed rgba(212,175,55,.35); color: #b9a96a; font-size: 12.5px; padding: 14px 18px; margin-top: 24px; line-height: 1.7; }

/* ---------- 404 ---------- */
.err-wrap { text-align: center; padding: 90px 20px; }
.err-wrap .code { font-family: var(--display); font-style: italic; font-weight: 900; font-size: clamp(90px,18vw,200px); color: var(--gold); line-height: .9; }
.err-wrap h1 { font-family: var(--display); font-style: italic; font-size: 32px; color: var(--ink); margin: 12px 0; }

/* ---------- 动画进入 ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- 移动端抽屉 ---------- */
.mobile-drawer { position: fixed; inset: 0; background: rgba(26,26,26,.97); z-index: 1000; transform: translateX(100%); transition: transform .35s var(--ease-in-out); display: flex; flex-direction: column; padding: 28px; }
.mobile-drawer.open { transform: none; }
.mobile-drawer a { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 26px; padding: 12px 0; border-bottom: 1px solid rgba(212,175,55,.2); }
.mobile-drawer .close { align-self: flex-end; background: none; border: 1px solid var(--gold); color: var(--gold); width: 44px; height: 44px; font-size: 22px; margin-bottom: 16px; }

/* ---------- 响应式断点 ---------- */
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); display: grid; }
  .vip-band .inner { grid-template-columns: 1fr; }
  .app-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: grid; }
  .btn-vip { display: none; }
  .hero { min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 46px 0; }
  .article { padding: 24px; }
}
