/* ===== 白日提灯 · 贺思慕 电子刊 · 简约高级版 ===== */

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif;
  background: #0a0a0a;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 主题变量 —— 降饱和 & 高级灰金红 */
:root {
  --red: #9c2a26;         /* 主红 更低饱和 */
  --red-deep: #6e1c19;
  --gold: #c9a063;
  --gold-soft: #d9bf8f;
  --ink: #1a1a1a;
  --ink-soft: #3a332c;
  --ink-light: #6a5e52;
  --cream: #f7f2e8;
  --paper: #faf6ee;
  --line: rgba(26,26,26,0.12);
  --line-light: rgba(26,26,26,0.08);
}

img { max-width: 100%; display: block; user-select: none; -webkit-user-drag: none; }

/* ===== 页码指示器 ===== */
.page-indicator {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.page-dot.active {
  background: var(--gold);
  width: 4px;
  height: 14px;
  border-radius: 2px;
}

/* ===== 刊头 ===== */
.magazine-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 80;
  color: #fff;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 300;
  transition: opacity 0.6s ease, color 0.6s ease;
}
.magazine-header.hidden { opacity: 0; pointer-events: none; }
.magazine-header .header-left,
.magazine-header .header-right {
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.magazine-header .header-center {
  color: rgba(255,255,255,0.75);
  letter-spacing: 4px;
  font-weight: 400;
}

/* ===== 翻页容器 ===== */
.magazine-container {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #0a0a0a;
  touch-action: none;
}
.magazine-page {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
  overflow: hidden;
}
.magazine-page.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 10;
}

/* 背景图 */
.page-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 10s ease-out;
}
.magazine-page.active .page-bg-img { transform: scale(1); }
.page-bg-blur { filter: blur(24px) brightness(0.32); }

/* 页面内容容器 */
.page-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 56px 26px 40px;
}

/* 通用章节编号 */
.section-num {
  display: inline-block;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--red);
  font-weight: 300;
  margin-bottom: 14px;
}
.section-num.light { color: var(--gold); }

/* ========================================= */
/* P1 · 封面                                  */
/* ========================================= */
.page-cover { background: #0a0a0a; }
.cover-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.92) 100%),
    radial-gradient(ellipse at 50% 65%, rgba(156,42,38,0.12) 0%, rgba(0,0,0,0.45) 70%);
}
.cover-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 68px 30px 48px;
}
.cover-top { text-align: center; }
.cover-badge {
  display: inline-block;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold-soft);
  padding: 5px 16px;
  border: 0.5px solid rgba(217,191,143,0.5);
  margin-bottom: 32px;
  font-weight: 300;
}
.cover-logo {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 58px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 14px;
  padding-left: 14px;
  line-height: 1.1;
  text-shadow: 0 4px 28px rgba(0,0,0,0.55);
  margin-bottom: 18px;
}
.cover-sub-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
  margin: 0 auto 14px;
}
.cover-issue {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.cover-bottom { text-align: center; }
.cover-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
  margin: 0 auto 20px;
}
.cover-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 14px;
  padding-left: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.cover-role {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 5px;
  margin-bottom: 14px;
  font-weight: 300;
}
.cover-actor {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 5px;
  margin-bottom: 28px;
  font-weight: 300;
}
.cover-tagline {
  font-family: 'Noto Serif SC', serif;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 3px;
  line-height: 2.2;
  margin-bottom: 34px;
  font-weight: 300;
}
.cover-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 300;
  animation: bounce 2.4s infinite ease-in-out;
}
.cover-scroll-hint i { font-size: 14px; color: var(--gold-soft); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========================================= */
/* P2 · 卷首语                                */
/* ========================================= */
.page-editorial {
  background: linear-gradient(180deg, #faf6ee 0%, #f1e9d9 100%);
}
.editorial-content {
  display: flex;
  flex-direction: column;
  padding: 72px 36px 48px;
  height: 100%;
  position: relative;
}
.editorial-top { text-align: center; margin-bottom: 32px; }
.editorial-seal {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
}
.editorial-seal::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 0.5px solid rgba(255,255,255,0.45);
}
.seal-inner { text-align: center; }
.editorial-title {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: 14px;
  padding-left: 14px;
  font-weight: 400;
  margin-bottom: 14px;
}
.editorial-divider {
  width: 32px;
  height: 0.5px;
  background: var(--red);
  margin: 0 auto;
}
.editorial-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 2px;
  -webkit-overflow-scrolling: touch;
}
.editorial-body::-webkit-scrollbar { display: none; }
.editorial-body p {
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 300;
  text-align: justify;
  letter-spacing: 0.5px;
}
.editorial-dropcap::first-letter {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 46px;
  font-weight: 400;
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--red);
}
.editorial-signature {
  margin-top: 22px;
  text-align: right;
  border-top: 0.5px solid var(--line);
  padding-top: 16px;
}
.sig-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--red);
  font-weight: 400;
}
.sig-date {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: var(--ink-light);
  margin-top: 4px;
  letter-spacing: 4px;
  font-weight: 300;
}

/* ========================================= */
/* P3 · 封面故事                              */
/* ========================================= */
.page-vogue {
  background: #0d0a09;
  color: #fff;
}
.vogue-wrap {
  position: relative;
  height: 100%;
  padding: 56px 24px 30px;
  display: flex;
  flex-direction: column;
}
.vogue-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.5);
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  padding-bottom: 12px;
  margin-bottom: 24px;
  font-weight: 300;
}
.vogue-topbar .issue { color: var(--gold-soft); font-size: 11px; }
.vogue-masthead {
  text-align: center;
  margin-bottom: 22px;
}
.mast-big {
  display: block;
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 12px;
  padding-left: 12px;
  color: #fff;
  font-weight: 400;
}
.mast-sub {
  display: block;
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  font-weight: 300;
}
.vogue-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.vogue-col-img {
  position: relative;
  width: 100%;
  height: 46%;
  overflow: hidden;
}
.vogue-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.vogue-img-vertical {
  position: absolute;
  right: 8px;
  top: 10px;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  background: rgba(0,0,0,0.3);
  padding: 6px 3px;
}
.vogue-col-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vogue-chapter {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 8px;
  color: var(--gold-soft);
  font-weight: 300;
}
.vogue-headline {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 4px;
  color: #fff;
  font-weight: 400;
}
.vogue-lede {
  font-family: 'Noto Serif SC', serif;
  font-size: 12px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  text-align: justify;
  letter-spacing: 0.5px;
}
.vogue-credits {
  margin-top: 8px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cred-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
  font-weight: 300;
}
.cred-key {
  min-width: 44px;
  color: var(--gold-soft);
  letter-spacing: 4px;
}
.vogue-folio {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 10px;
}
.folio-num {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 22px;
  color: var(--gold-soft);
  font-weight: 400;
  letter-spacing: 2px;
}
.folio-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ========================================= */
/* P4 · 角色档案                              */
/* ========================================= */
.page-profile {
  background: linear-gradient(180deg, #faf6ee 0%, #efe7d5 100%);
}
.profile-content {
  height: 100%;
  overflow-y: auto;
  padding: 56px 26px 40px;
  -webkit-overflow-scrolling: touch;
}
.profile-content::-webkit-scrollbar { display: none; }
.profile-header { text-align: center; margin-bottom: 20px; }
.profile-title {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: 10px;
  padding-left: 10px;
  font-weight: 400;
  margin-bottom: 10px;
}
.profile-divider {
  width: 30px;
  height: 0.5px;
  background: var(--red);
  margin: 0 auto;
}
.profile-photo-area {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #e0d5bf;
}
.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.02) saturate(0.92);
}
.profile-info {
  background: rgba(255,255,255,0.45);
  padding: 18px 20px;
  margin-bottom: 18px;
  border-left: 2px solid var(--red);
}
.profile-row {
  display: flex;
  padding: 9px 0;
  border-bottom: 0.5px dashed rgba(156,42,38,0.16);
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
}
.profile-row:last-child { border-bottom: none; }
.profile-key {
  min-width: 52px;
  color: var(--red);
  letter-spacing: 4px;
  font-weight: 500;
}
.profile-val {
  flex: 1;
  color: var(--ink-soft);
  letter-spacing: 1px;
  font-weight: 300;
}
.profile-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.trait-tag {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  padding: 5px 12px;
  background: transparent;
  border: 0.5px solid var(--red);
  color: var(--red);
  letter-spacing: 2px;
  font-weight: 400;
}

/* 关系图 */
.relation-section {
  margin-top: 12px;
  padding: 22px 0 10px;
  border-top: 0.5px solid var(--line);
}
.relation-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--red);
  margin-bottom: 22px;
  text-align: center;
  font-weight: 300;
}
.relation-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.relation-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 8px;
  background: rgba(255,255,255,0.6);
  border: 0.5px solid var(--line);
  min-width: 92px;
  transition: transform 0.4s;
}
.relation-node.center {
  background: var(--red);
  border: 1px solid var(--red-deep);
  transform: scale(1.12);
  box-shadow: 0 8px 22px rgba(156,42,38,0.25);
}
.relation-node.center .node-name,
.relation-node.center .node-role,
.relation-node.center .node-relation {
  color: #fff !important;
}
.node-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 6px;
}
.node-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 1px;
}
.node-role {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  color: var(--ink-light);
  margin-top: 2px;
  font-weight: 300;
}
.node-relation {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  color: var(--red);
  margin-top: 4px;
  font-weight: 400;
}

/* ========================================= */
/* P5 · 名场面 + 台词                         */
/* ========================================= */
.page-scenes {
  background: linear-gradient(180deg, #0d0a09 0%, #1a1311 100%);
  color: #fff;
}
.scenes-content {
  height: 100%;
  overflow-y: auto;
  padding: 56px 26px 40px;
  -webkit-overflow-scrolling: touch;
}
.scenes-content::-webkit-scrollbar { display: none; }
.scenes-header { text-align: center; margin-bottom: 24px; }
.scenes-title {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 10px;
  padding-left: 10px;
  font-weight: 400;
  margin-bottom: 10px;
}
.scenes-divider {
  width: 30px;
  height: 0.5px;
  background: var(--gold);
  margin: 0 auto;
}
.scenes-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.scene-item {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
  padding: 12px;
  align-items: stretch;
}
.scene-img-wrap {
  width: 110px;
  height: 78px;
  flex-shrink: 0;
  overflow: hidden;
}
.scene-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.scene-item:hover .scene-thumb { transform: scale(1.06); }
.scene-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scene-num {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
  font-weight: 400;
}
.scene-text h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 5px;
  font-weight: 500;
}
.scene-text p {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* 内联台词 */
.quotes-inline {
  padding: 22px 0 0;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.inline-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 18px;
  text-align: center;
  font-weight: 300;
}
.quotes-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-card {
  padding: 16px 18px 14px 26px;
  background: rgba(255,255,255,0.025);
  border: 0.5px solid rgba(217,191,143,0.15);
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 2px;
  left: 10px;
  font-family: 'Ma Shan Zheng', serif;
  font-size: 34px;
  color: var(--red);
  line-height: 1;
}
.quote-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
  line-height: 1.9;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}
.quote-scene {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: var(--gold-soft);
  margin-top: 8px;
  font-weight: 300;
  letter-spacing: 3px;
}

/* ========================================= */
/* P6 · OST                                   */
/* ========================================= */
.page-ost { background: #0a0a0a; color: #fff; }
.ost-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.95) 100%),
    radial-gradient(circle at 30% 20%, rgba(156,42,38,0.18) 0%, transparent 60%);
}
.ost-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 56px 26px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ost-content::-webkit-scrollbar { display: none; }
.ost-header { text-align: center; margin-bottom: 32px; }
.ost-title {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 10px;
  padding-left: 10px;
  font-weight: 400;
  margin-bottom: 12px;
}
.ost-divider-line {
  width: 30px;
  height: 0.5px;
  background: var(--gold);
  margin: 0 auto 10px;
}
.ost-sub {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 6px;
  font-weight: 300;
}
.ost-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ost-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.035);
  border: 0.5px solid rgba(217,191,143,0.13);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.ost-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s;
}
.ost-card:hover::before { transform: scaleY(1); }
.ost-card:hover { background: rgba(255,255,255,0.06); }
.ost-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217,191,143,0.08);
  border: 0.5px solid rgba(217,191,143,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  flex-shrink: 0;
}
.ost-icon-wrap i { font-size: 18px; }
.ost-info { flex: 1; min-width: 0; }
.ost-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 4px;
}
.ost-artist {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: var(--gold-soft);
  letter-spacing: 3px;
  font-weight: 300;
  margin-bottom: 5px;
}
.ost-desc {
  font-family: 'Noto Serif SC', serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
}
.ost-play {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 0.5px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.ost-play:hover { background: var(--red); color: #fff; }
.ost-play i { font-size: 14px; }

/* ========================================= */
/* P7 · 未公开视觉                            */
/* ========================================= */
.page-behind {
  background: linear-gradient(180deg, #faf6ee 0%, #e9dec6 100%);
}
.behind-content {
  height: 100%;
  overflow-y: auto;
  padding: 56px 22px 40px;
  -webkit-overflow-scrolling: touch;
}
.behind-content::-webkit-scrollbar { display: none; }
.behind-header { text-align: center; margin-bottom: 24px; }
.behind-title {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: 10px;
  padding-left: 10px;
  font-weight: 400;
  margin-bottom: 10px;
}
.behind-divider {
  width: 30px;
  height: 0.5px;
  background: var(--red);
  margin: 0 auto 8px;
}
.behind-sub {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 4px;
  font-weight: 300;
}
.behind-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.behind-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #d4c7a9;
}
.behind-item-lg {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.behind-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
  filter: contrast(1.02) saturate(0.92);
}
.behind-item:hover .behind-img { transform: scale(1.04); }
.behind-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.78));
  color: #fff;
}
.behind-tag {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold-soft);
  font-weight: 300;
  display: block;
  margin-bottom: 4px;
}
.behind-caption {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 400;
}

/* 设定稿 */
.setting-block {
  padding: 22px 0;
  border-top: 0.5px solid var(--line);
  margin-bottom: 20px;
}
.setting-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--red);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 300;
}
.setting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.setting-card {
  background: rgba(255,255,255,0.55);
  border-left: 2px solid var(--red);
  padding: 14px 12px;
  position: relative;
}
.setting-num {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 18px;
  color: var(--red);
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
.setting-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 6px;
}
.setting-desc {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: var(--ink-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 10px;
}
.setting-badge {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  color: var(--red);
  letter-spacing: 2px;
  display: inline-block;
  padding: 2px 7px;
  border: 0.5px solid var(--red);
  font-weight: 400;
}
.behind-exclusive-note {
  text-align: center;
  padding: 16px 0;
  border-top: 0.5px dashed rgba(156,42,38,0.2);
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 4px;
  font-weight: 300;
}
.behind-exclusive-note i { margin-right: 6px; }

/* ========================================= */
/* P8 · 双人大片                              */
/* ========================================= */
.page-numero { background: #000; overflow: hidden; }
.numero-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.numero-photo {
  position: absolute;
  inset: 0;
}
.numero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.05);
}
.numero-bignum {
  position: absolute;
  top: 70px;
  right: 18px;
  font-family: 'Ma Shan Zheng', serif;
  font-size: 110px;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  z-index: 2;
  font-weight: 400;
}
.numero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 62px 24px 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.92) 100%);
  z-index: 3;
  color: #fff;
}
.numero-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.numero-topline .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
}
.numero-bottom { display: flex; flex-direction: column; gap: 16px; }
.numero-sublabel {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold-soft);
  font-weight: 300;
}
.numero-names {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.name-row {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 8px;
  padding-left: 8px;
  font-weight: 400;
}
.name-row .amp {
  color: var(--gold-soft);
  margin-right: 6px;
  letter-spacing: 0;
  font-size: 20px;
}
.numero-quote {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  border-left: 1px solid var(--gold-soft);
  padding-left: 12px;
  font-weight: 400;
  letter-spacing: 2px;
}
.numero-quote em {
  color: var(--gold-soft);
  font-style: normal;
}
.numero-quote-cn {
  display: block;
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  margin-top: 6px;
  font-weight: 300;
}
.numero-credits {
  display: flex;
  justify-content: space-between;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.5);
  border-top: 0.5px solid rgba(255,255,255,0.12);
  padding-top: 12px;
  font-weight: 300;
}
.numero-credits .folio {
  color: var(--gold-soft);
}

/* ========================================= */
/* P9 · 专栏创作                              */
/* ========================================= */
.page-bazaar {
  background: linear-gradient(180deg, #faf6ee 0%, #f2ebdb 100%);
}
.bazaar-wrap {
  height: 100%;
  overflow-y: auto;
  padding: 56px 26px 40px;
  -webkit-overflow-scrolling: touch;
}
.bazaar-wrap::-webkit-scrollbar { display: none; }
.bazaar-logo-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.bazaar-logo {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 20px;
  letter-spacing: 8px;
  padding-left: 8px;
  color: var(--ink);
  font-weight: 400;
}
.bazaar-logo-meta {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--ink-light);
  font-weight: 300;
}
.bazaar-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.rule-line {
  flex: 1;
  height: 0.5px;
  background: rgba(26,26,26,0.25);
}
.rule-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--ink);
  font-weight: 300;
}
.bazaar-title {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 10px;
  padding-left: 10px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 8px;
}
.bazaar-subtitle {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 5px;
  margin-bottom: 26px;
  font-weight: 300;
}
.bazaar-tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.bazaar-tab-bar::-webkit-scrollbar { display: none; }
.ctab {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 3px;
  padding: 6px 14px;
  background: transparent;
  border: 0.5px solid rgba(26,26,26,0.25);
  color: var(--ink-soft);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
  font-weight: 400;
}
.ctab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.bazaar-article {
  padding: 18px 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  margin-bottom: 20px;
}
.creation-article h3 {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: 6px;
  margin-bottom: 8px;
  font-weight: 400;
}
.creation-article .subtitle {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-weight: 400;
}
.creation-article p {
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 14px;
  text-align: justify;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.creation-article .highlight-text {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 15px;
  color: var(--red);
  letter-spacing: 3px;
  line-height: 1.9;
  text-align: center;
  padding: 16px 10px;
  margin: 20px 0 4px;
  border-top: 0.5px solid var(--red);
  border-bottom: 0.5px solid var(--red);
  font-weight: 400;
}
.bazaar-footer {
  display: flex;
  justify-content: space-between;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--ink-light);
  font-weight: 300;
}
.bazaar-footer .folio { color: var(--red); }

/* ========================================= */
/* P10 · 弹幕 + 热搜                          */
/* ========================================= */
.page-interact {
  background: linear-gradient(180deg, #faf6ee 0%, #f1e9d5 100%);
}
.interact-content {
  height: 100%;
  overflow-y: auto;
  padding: 56px 24px 40px;
  -webkit-overflow-scrolling: touch;
}
.interact-content::-webkit-scrollbar { display: none; }
.interact-header { text-align: center; margin-bottom: 24px; }
.interact-title {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: 8px;
  padding-left: 8px;
  font-weight: 400;
  margin-bottom: 10px;
}
.interact-divider {
  width: 30px;
  height: 0.5px;
  background: var(--red);
  margin: 0 auto 8px;
}
.interact-sub {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: 4px;
  font-weight: 300;
}
.block-sub-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--red);
  margin-bottom: 14px;
  font-weight: 300;
  text-align: center;
}
.danmaku-block { margin-bottom: 28px; }
.danmaku-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.55);
  border: 0.5px solid var(--line);
  max-height: 180px;
  overflow: hidden;
  position: relative;
}
.danmaku-wall::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8));
  pointer-events: none;
}
.danmaku-item {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  padding: 4px 10px;
  letter-spacing: 1px;
  white-space: nowrap;
  animation: danmaku-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
  font-weight: 400;
}
@keyframes danmaku-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hot-topics-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hot-topic-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.65);
  border-left: 2px solid var(--red);
}
.hot-rank {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ma Shan Zheng', serif;
  font-size: 13px;
  font-weight: 400;
  flex-shrink: 0;
}
.hot-rank.top {
  background: var(--red);
  color: var(--gold-soft);
}
.hot-rank.normal {
  background: #d4c7a9;
  color: #fff;
}
.hot-main { flex: 1; min-width: 0; }
.hot-tag-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.hot-tag {
  font-family: 'Noto Serif SC', serif;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 1px;
}
.hot-badge {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  padding: 1px 6px;
  background: var(--red);
  color: #fff;
  letter-spacing: 1px;
  font-weight: 400;
}
.hot-desc {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.5;
}
.hot-heat {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 13px;
  color: var(--red);
  font-weight: 400;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* ========================================= */
/* P11 · 数据荣誉                             */
/* ========================================= */
.page-data {
  background: linear-gradient(180deg, #0d0a09 0%, #1a1311 100%);
  color: #fff;
}
.data-content {
  height: 100%;
  overflow-y: auto;
  padding: 56px 24px 40px;
  -webkit-overflow-scrolling: touch;
}
.data-content::-webkit-scrollbar { display: none; }
.data-header { text-align: center; margin-bottom: 24px; }
.data-title {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 10px;
  padding-left: 10px;
  font-weight: 400;
  margin-bottom: 10px;
}
.data-divider {
  width: 30px;
  height: 0.5px;
  background: var(--gold);
  margin: 0 auto;
}
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.data-card {
  padding: 20px 12px;
  background: rgba(255,255,255,0.035);
  border: 0.5px solid rgba(217,191,143,0.18);
  text-align: center;
}
.data-number {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 36px;
  color: var(--gold-soft);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
}
.data-unit {
  font-family: 'Noto Serif SC', serif;
  font-size: 12px;
  color: var(--gold-soft);
  margin-left: 3px;
  font-weight: 300;
}
.data-desc {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 3px;
  margin-top: 8px;
  font-weight: 300;
}
.chart-block { margin-bottom: 22px; }
.chart-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 300;
  text-align: center;
}
.chart-box {
  width: 100%;
  height: 200px;
  background: rgba(255,255,255,0.025);
  border: 0.5px solid rgba(217,191,143,0.12);
  padding: 8px 4px;
}

/* ========================================= */
/* P12 · 封底 · 周边                          */
/* ========================================= */
.page-back { background: #0a0a0a; color: #fff; }
.back-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.88) 50%, rgba(10,10,10,0.98) 100%);
}
.back-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 56px 26px 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}
.back-content::-webkit-scrollbar { display: none; }
.back-top { text-align: center; margin-bottom: 22px; }
.back-logo {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 34px;
  color: #fff;
  letter-spacing: 12px;
  padding-left: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}
.back-sub {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 6px;
  font-weight: 300;
}

/* 周边 */
.merch-block {
  margin-bottom: 22px;
  padding: 20px 0;
  border-top: 0.5px solid rgba(217,191,143,0.2);
  border-bottom: 0.5px solid rgba(217,191,143,0.2);
}
.merch-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold-soft);
  margin-bottom: 14px;
  text-align: center;
  font-weight: 300;
}
.merch-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.merch-card {
  background: rgba(255,255,255,0.045);
  border: 0.5px solid rgba(217,191,143,0.18);
  overflow: hidden;
  transition: transform 0.4s;
}
.merch-card:hover { transform: translateY(-2px); }
.merch-img-wrap {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.merch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.merch-card:hover .merch-img { transform: scale(1.06); }
.merch-info { padding: 10px 10px 12px; }
.merch-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merch-desc {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merch-price {
  font-family: 'Ma Shan Zheng', 'Noto Serif SC', serif;
  font-size: 14px;
  color: var(--gold-soft);
  font-weight: 400;
  letter-spacing: 1px;
}
.merch-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: transparent;
  border: 0.5px solid var(--gold-soft);
  color: var(--gold-soft);
  font-family: 'Noto Serif SC', serif;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}
.merch-cta:hover {
  background: var(--gold-soft);
  color: #0a0a0a;
}
.merch-cta i { font-size: 14px; }

.back-middle { text-align: center; margin: 22px 0; }
.back-quote {
  font-family: 'Ma Shan Zheng', serif;
  font-size: 15px;
  color: #fff;
  line-height: 2;
  letter-spacing: 4px;
  font-weight: 400;
}
.back-quote-from {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 5px;
  margin-top: 12px;
  font-weight: 300;
}

.back-bottom {
  text-align: center;
  margin-top: auto;
  padding-top: 18px;
}
.back-collector-stamp {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.stamp-border {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 11px 20px;
  border: 0.5px solid var(--gold-soft);
}
.stamp-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 4px;
}
.stamp-number {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  color: rgba(217,191,143,0.65);
  letter-spacing: 3px;
  font-weight: 300;
}
.back-info p {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
  line-height: 1.9;
  font-weight: 300;
}
.back-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 12px;
}
.back-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-family: 'Noto Serif SC', serif;
  letter-spacing: 2px;
  font-weight: 300;
  transition: color 0.3s;
}
.back-links a:hover { color: var(--gold-soft); }
.back-links i { font-size: 15px; }
.back-copyright {
  font-family: 'Noto Serif SC', serif;
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 1px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 8px;
}
.back-sign {
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  color: rgba(255,255,255,0.48);
  letter-spacing: 1px;
  font-weight: 300;
}
.back-sign a { text-decoration: none; }

/* ========================================= */
/* 翻页提示                                   */
/* ========================================= */
.swipe-hint {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.6);
  z-index: 95;
  font-family: 'Noto Serif SC', serif;
  font-size: 10px;
  letter-spacing: 3px;
  transition: opacity 0.6s ease;
  font-weight: 300;
  pointer-events: none;
}
.swipe-hint.hidden { opacity: 0; }
.swipe-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: swipe 2s infinite ease-in-out;
}
.swipe-icon i { font-size: 14px; color: var(--gold-soft); }
@keyframes swipe {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-6px); opacity: 1; }
}

/* ========================================= */
/* 响应式                                     */
/* ========================================= */
@media (min-width: 640px) {
  .magazine-container {
    max-width: 430px;
    margin: 0 auto;
    box-shadow: 0 0 80px rgba(0,0,0,0.6);
  }
  body {
    background: #0a0a0a;
    display: flex;
    justify-content: center;
  }
}

/* ============================================ */
/* === 白恩宇 · 主题覆盖（司法蓝 / 暖金 / 暮色） === */
/* ============================================ */
:root {
  --red: #3a5a7c;         /* 司法深蓝（替换原朱红主色） */
  --red-deep: #1f3a55;    /* 深夜蓝 */
  --gold: #c8a96a;        /* 暖金 / 国徽金 */
  --gold-soft: #e0c690;   /* 浅金 */
  --ink: #14181c;         /* 近黑 */
  --ink-soft: #2a2f36;
  --ink-light: #5a6470;
  --cream: #f4eee2;
  --paper: #f8f3e6;
  --line: rgba(20,24,28,0.14);
  --line-light: rgba(20,24,28,0.08);
}

/* 强调色二次覆盖，确保所有原 #9c2a26 / #6e1c19 替换完成 */
.cover-badge,
.cover-line,
.cover-sub-line,
.editorial-divider,
.profile-divider,
.scenes-divider,
.behind-divider,
.data-divider,
.interact-divider,
.ost-divider-line { background: var(--red) !important; }

.editorial-seal { border-color: var(--red) !important; color: var(--red) !important; }
.editorial-dropcap::first-letter { color: var(--red) !important; }
.section-num { color: var(--red) !important; }
.cover-name { color: var(--gold-soft) !important; }
.profile-key { color: var(--red) !important; }
.trait-tag { background: rgba(58,90,124,0.08) !important; color: var(--red) !important; border-color: rgba(58,90,124,0.2) !important; }

.relation-node.center .node-avatar { background: rgba(58,90,124,0.12) !important; color: var(--red) !important; border-color: var(--red) !important; }

.scene-num { color: var(--red) !important; }
.quote-text { color: var(--ink-soft) !important; }
.quote-card { border-left-color: var(--red) !important; }

.ost-icon-wrap i { color: var(--gold) !important; }
.ost-play { background: var(--red) !important; }

.behind-tag { background: var(--red) !important; }
.setting-num { color: var(--red) !important; }
.setting-badge { color: var(--red) !important; border-color: var(--red) !important; }

.numero-bignum { color: rgba(200,169,106,0.18) !important; }
.numero-quote em { color: var(--gold-soft) !important; font-style: normal; }

.bazaar-logo { color: var(--red) !important; }
.bazaar-title { color: var(--ink) !important; }
.ctab.active { background: var(--red) !important; color: #fff !important; }
.ctab.active::after { background: var(--gold) !important; }
.creation-article h3 { color: var(--red) !important; }
.creation-article .highlight-text { background: rgba(58,90,124,0.08) !important; color: var(--red) !important; border-left-color: var(--red) !important; }

.hot-rank.top { background: var(--red) !important; color: #fff !important; }
.hot-tag { color: var(--red) !important; }
.hot-badge { background: var(--gold) !important; color: var(--ink) !important; }
.hot-heat { color: var(--red) !important; }

.data-number { color: var(--gold-soft) !important; }
.data-card { border-color: rgba(200,169,106,0.25) !important; }

.merch-cta { background: var(--red) !important; }
.merch-cta:hover { background: var(--red-deep) !important; }
.merch-price { color: var(--red) !important; }

.back-collector-stamp .stamp-border { border-color: var(--gold) !important; color: var(--gold-soft) !important; }
.back-logo { color: var(--gold-soft) !important; }

/* 法槌/卷宗装饰用线 */
.profile-content::before, .scenes-content::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin-bottom: 12px;
}

/* 角色档案体红线（原 box-shadow 配色） */
.profile-photo-area { box-shadow: 0 8px 24px rgba(20,24,28,0.4), 0 0 0 1px rgba(200,169,106,0.3) !important; }

/* 提升整体的电影感 —— 暗角 */
.magazine-page::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}
.magazine-page > * { position: relative; z-index: 2; }

/* Tab 数量增加到 6 个后的自适应 —— 长 Tab 收窄字距 + 横向滑动指引 */
.bazaar-tab-bar {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.ctab {
  white-space: nowrap;
  letter-spacing: 2px !important;
  padding: 6px 12px !important;
}
.ctab[data-tab="family"] { letter-spacing: 1px !important; }
@media (max-width: 420px) {
  .ctab {
    font-size: 10px !important;
    letter-spacing: 1px !important;
    padding: 5px 10px !important;
  }
}

/* ============================================ */
/* === 白恩宇成长弧光 · 专属样式 === */
/* ============================================ */

/* 场景转变意义标注 */
.scene-meta {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(58,90,124,0.08);
  border-left: 2px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-size: 10px;
  color: var(--ink-light);
  line-height: 1.6;
  font-style: italic;
}

/* 时间线样式增强 */
.cover-content .cover-bottom > div[style*="flex-direction:column"] {
  margin-top: 20px !important;
}

/* 弧光页面场景网格微调 */
.page-scenes .scene-item {
  position: relative;
}
.page-scenes .scene-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.15;
}
.page-scenes .scene-item:last-child::after {
  display: none;
}
