/* 星座运势 · Premium（首页 + 详情，对齐塔罗灵境风格） */

.zh-premium {
  --zh-violet: #7c3aed;
  --zh-gold: #fbbf24;
  --zh-glass: rgba(18, 12, 32, 0.88);
}

/* ── 滚动进度 ── */
.zh-premium .zh-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 220;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.zh-premium .zh-scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--zh-violet), var(--zh-gold));
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.45);
  transition: width 0.12s linear;
}

/* ── Hero 氛围层 ── */
.zh-premium .zh-aurora {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 55% 45% at 18% 28%, rgba(168, 85, 247, 0.38), transparent 55%),
    radial-gradient(ellipse 48% 42% at 82% 18%, rgba(236, 72, 153, 0.22), transparent 50%),
    radial-gradient(ellipse 58% 48% at 50% 85%, rgba(59, 130, 246, 0.14), transparent 55%);
  animation: zh-aurora-shift 20s ease-in-out infinite alternate;
  filter: blur(40px);
}
@keyframes zh-aurora-shift {
  0% { transform: translate3d(-2%, 0, 0) scale(1); }
  100% { transform: translate3d(3%, -2%, 0) scale(1.05); }
}
.zh-premium .zh-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.zh-premium .zh-orb--1 {
  width: 280px;
  height: 280px;
  top: 8%;
  right: -4%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 70%);
  animation: zh-orb-float 14s ease-in-out infinite;
}
.zh-premium .zh-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 18%;
  left: -2%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 70%);
  animation: zh-orb-float 16s ease-in-out infinite reverse;
}
@keyframes zh-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, -14px, 0); }
}

.zh-premium .zh-hero-eyebrow,
.zh-premium .zh-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(253, 230, 138, 0.95);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.28);
}

.zh-premium .zh-masthead-title.lj-mainline {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  background: linear-gradient(120deg, #fff 0%, #f5e8ff 35%, #fde68a 68%, #e9d5ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: zh-title-shine 10s ease-in-out infinite;
  filter: drop-shadow(0 2px 20px rgba(124, 58, 237, 0.35));
}
@keyframes zh-title-shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.zh-premium .zh-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(216, 180, 254, 0.85);
  text-decoration: none;
  animation: zh-scroll-bounce 2.2s ease-in-out infinite;
}
@keyframes zh-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── 首页 hero 与筛选条对齐 ── */
.zh-premium.zh-index-hub .lj-daily-hero.zh-masthead {
  margin-bottom: 0;
}
.zh-premium .lj-daily-hero-inner.zh-masthead-inner {
  width: 100%;
  max-width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.zh-premium .zh-hub-type-strip {
  width: 100%;
  max-width: 100%;
  margin: 10px 0 14px;
  box-sizing: border-box;
}
.zh-premium .zh-hub-subperiod {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0 2px;
}
.zh-premium .zh-hub-subperiod[hidden] {
  display: none !important;
}
.zh-premium .zh-hub-subperiod .zh-detail-subchip {
  flex: 1;
  min-width: 72px;
  cursor: pointer;
  font-family: inherit;
  border: none;
}

/* ── 星座 Tab 增强 ── */
.zh-premium .zh-ztab-scroller--premium {
  padding: 12px 4px 16px;
  margin-bottom: 4px;
}
.zh-premium .zh-ztab.is-active {
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.16), rgba(124, 58, 237, 0.22));
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.35),
    0 8px 28px rgba(124, 58, 237, 0.28);
}

/* ── 预览卡 Premium ── */
.zh-premium .zh-preview-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 4px;
  box-sizing: border-box;
  border-radius: 22px;
  padding: 22px clamp(18px, 2.5vw, 26px) 24px;
  background: linear-gradient(155deg, rgba(28, 18, 48, 0.92), rgba(12, 8, 22, 0.96));
  border: 1px solid rgba(168, 85, 247, 0.32);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.zh-premium .zh-preview-card.is-swapping {
  opacity: 0.55;
  transform: translateY(6px);
}
.zh-premium .zh-preview-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  text-align: left;
}
.zh-premium .zh-preview-title {
  margin: 0 0 8px;
  text-align: left;
}
.zh-premium .zh-luck-panel {
  margin-top: 16px;
  text-align: left;
}
.zh-premium .zh-luck-panel-title {
  text-align: left;
  font-size: 0.95rem;
}
.zh-premium .zh-index-preview-text {
  text-align: left;
}
.zh-premium .zh-preview-glyph-wrap {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zh-premium .zh-preview-glyph {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.45));
}
.zh-premium .zh-preview-glyph-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(124, 58, 237, 0.25);
  animation: zh-glyph-ring 4s ease-in-out infinite;
}
@keyframes zh-glyph-ring {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; box-shadow: 0 0 24px rgba(168, 85, 247, 0.4); }
}
.zh-premium .zh-preview-card-titles {
  flex: 1;
  min-width: 0;
}
.zh-premium .zh-preview-insight {
  margin: 8px 0 0;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.22);
}

.zh-premium .zh-hub-scores {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(6, 4, 14, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.zh-premium .zh-btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a0a2e;
  text-decoration: none;
  background: linear-gradient(135deg, #fde68a, #fbbf24, #a855f7);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.35);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.zh-premium .zh-btn-glow:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 36px rgba(251, 191, 36, 0.45);
  color: #1a0a2e;
}

/* ── 下半区 ── */
.zh-premium .zh-lower-premium {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(180deg, rgba(8, 5, 16, 0.2) 0%, rgba(8, 5, 16, 1) 18%);
}
.zh-premium .zh-lower-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 20px 80px;
}
.zh-premium .zh-section--premium {
  position: relative;
}
.zh-premium .zh-section-glow {
  position: absolute;
  inset: 5% 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 50% 20%, rgba(124, 58, 237, 0.18), transparent 70%);
  filter: blur(28px);
}
.zh-premium .zh-section-eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(251, 191, 36, 0.75);
}
.zh-premium .zh-features--premium {
  gap: 20px;
}
.zh-premium .zh-feature--premium {
  position: relative;
  overflow: hidden;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(18, 12, 32, 0.9);
  border: 1px solid rgba(168, 85, 247, 0.22);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.zh-premium .zh-feature--premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.zh-premium .zh-feature--premium:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 20px 48px rgba(88, 28, 135, 0.35);
}
.zh-premium .zh-feature--premium:hover::before {
  transform: translateX(120%);
}
.zh-premium .zh-feature-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 1.2rem;
  color: #fde68a;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(251, 191, 36, 0.15));
}

.zh-premium .zh-hub-nav-grid--premium .zh-hub-nav-card {
  border-radius: 20px;
  background: rgba(18, 12, 32, 0.92);
  border: 1px solid rgba(168, 85, 247, 0.25);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.zh-premium .zh-hub-nav-grid--premium .zh-hub-nav-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 20px 52px rgba(124, 58, 237, 0.32);
}

/* ══════════ 详情页 ══════════ */
.zh-detail-scope {
  padding-bottom: 48px;
}

.zh-detail-hero-stage {
  position: relative;
  min-height: clamp(360px, 48vh, 520px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}
.zh-detail-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.zh-detail-hero-bg .cover {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.1);
  object-fit: cover;
  object-position: center 35%;
}
.zh-detail-hero-stage .lj-meteor-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.zh-detail-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 20px 20px;
  text-align: left;
}

/* Hero 内排版（原 .zh-detail-page 作用域迁移） */
.zh-detail-hero-content .zh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.78rem;
}
.zh-detail-hero-content .zh-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(196, 181, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.zh-detail-hero-content .zh-breadcrumb a:hover {
  color: #fde68a;
}
.zh-detail-hero-content .zh-breadcrumb span:not([aria-hidden]) {
  color: rgba(233, 213, 255, 0.75);
}
.zh-detail-hero-content .zh-detail-hero-main {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.zh-detail-hero-content .zh-detail-glyph {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.3);
  border: 1px solid rgba(251, 191, 36, 0.4);
  box-shadow:
    0 0 32px rgba(168, 85, 247, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.06);
}
.zh-detail-hero-content .zh-detail-hero-text {
  flex: 1;
  min-width: 0;
}
.zh-detail-hero-content .zh-detail-title {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.zh-detail-hero-content .zh-detail-sign {
  background: linear-gradient(115deg, #fce7f3, #e9d5ff 40%, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.zh-detail-hero-content .zh-detail-type {
  font-size: 0.92em;
  font-weight: 600;
  color: #fde68a;
}
.zh-detail-hero-content .zh-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.zh-detail-hero-content .zh-detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  color: rgba(233, 213, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(167, 139, 250, 0.2);
}
.zh-detail-hero-content .zh-detail-pill i {
  font-size: 0.65rem;
  color: var(--zh-gold);
}
.zh-detail-hero-content .zh-detail-insight {
  margin: 0;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(243, 240, 255, 0.92);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.18);
}

.zh-detail-sign-zone {
  margin-top: 22px;
  padding: 14px 16px 16px;
  border-radius: 18px;
  background: rgba(8, 5, 16, 0.55);
  border: 1px solid rgba(168, 85, 247, 0.22);
  backdrop-filter: blur(8px);
}
.zh-detail-sign-zone .zh-detail-sign-nav {
  margin: 0;
}
.zh-detail-sign-zone .zh-ztab-scroller {
  margin: 0;
  padding: 4px 0 0;
}

.zh-premium .zh-detail-glyph--pulse {
  animation: zh-glyph-ring 5s ease-in-out infinite;
}

.zh-premium .zh-detail-page {
  position: relative;
  z-index: 4;
  width: calc(100% - 32px);
  max-width: 900px;
  margin: -28px auto 0;
  padding: 28px clamp(16px, 3vw, 28px) 40px;
  border-radius: 24px 24px 0 0;
  background: rgba(12, 8, 22, 0.97);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-bottom: none;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  overflow: visible;
}

.zh-premium .zh-detail-type-nav {
  margin-bottom: 22px;
}

.zh-premium .zh-detail-sign-nav--sticky {
  display: none;
}

.zh-premium .zh-detail-trend {
  margin-top: 28px;
}

.zh-premium .zh-detail-trend .dr-section-head {
  margin-bottom: 16px;
}

.zh-premium .zh-detail-trend .dr-section-head h2 {
  margin: 6px 0 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: #faf5ff;
}

.zh-premium .zh-detail-trend .dr-section-sub {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(196, 181, 220, 0.75);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .zh-detail-hero-content .zh-detail-hero-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .zh-detail-hero-content .zh-detail-pills {
    justify-content: center;
  }
  .zh-detail-hero-content .zh-detail-title {
    justify-content: center;
  }
  .zh-detail-sign-zone {
    margin-top: 16px;
    padding: 12px 10px 14px;
  }
}

.zh-premium .zh-detail-ztabs {
  margin: 0;
}

.zh-premium .zh-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fefce8;
}
.zh-premium .zh-section-title i {
  color: var(--zh-gold);
}

.zh-premium .zh-score-grid--premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .zh-premium .zh-score-grid--premium {
    grid-template-columns: repeat(3, 1fr);
  }
}
.zh-premium .zh-score-card {
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.18);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.zh-premium .zh-score-card:hover {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}
.zh-premium .zh-score-card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(196, 181, 253, 0.85);
  margin-bottom: 8px;
}
.zh-premium .zh-score-card-bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 8px;
}
.zh-premium .zh-score-card-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6d28d9, #c084fc, #fde68a);
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.zh-premium .zh-score-card-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fde68a;
}

.zh-premium .zh-reading-shell--premium {
  border-radius: 20px;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(36, 22, 62, 0.6), rgba(8, 5, 16, 0.85));
  border: 1px solid rgba(251, 191, 36, 0.22);
}

.zh-premium .zh-luck-grid--premium .zh-luck-item {
  border-radius: 16px;
  transition: transform 0.25s;
}
.zh-premium .zh-luck-grid--premium .zh-luck-item:hover {
  transform: translateY(-2px);
}

.zh-premium .zh-detail-dim-grid--premium {
  display: grid;
  gap: 16px;
}
@media (min-width: 720px) {
  .zh-premium .zh-detail-dim-grid--premium {
    grid-template-columns: 1fr 1fr;
  }
}
.zh-premium .zh-detail-dim-card--premium {
  position: relative;
  overflow: hidden;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(18, 12, 32, 0.88);
  border: 1px solid rgba(168, 85, 247, 0.2);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.zh-premium .zh-detail-dim-card--premium.is-highlight {
  border-color: rgba(251, 191, 36, 0.45);
  background: linear-gradient(155deg, rgba(124, 58, 237, 0.15), rgba(18, 12, 32, 0.92));
}
.zh-premium .zh-detail-dim-card--premium:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.zh-premium .zh-dim-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fde68a;
  background: rgba(124, 58, 237, 0.35);
  vertical-align: middle;
}
.zh-premium .zh-detail-dim-title {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  font-size: 1rem;
}

.zh-premium .zh-faq--premium details {
  border-radius: 16px;
  transition: border-color 0.25s, background 0.25s;
}
.zh-premium .zh-faq--premium details[open] {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(124, 58, 237, 0.12);
}

.zh-premium .zh-btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.45);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(18, 12, 32, 0.9));
  color: #e9d5ff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.zh-premium .zh-btn-share:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
  color: #fff;
}

/* ══════════ Ultra · 分区布局 / 雷达 / 粒子 ══════════ */

.zh-particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.zh-hero-zone {
  margin: 0 0 20px;
  text-align: left;
}
.zh-zone-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(216, 180, 254, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.zh-zone-label i {
  color: var(--zh-gold);
}

.zh-filter-deck {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 28px;
  text-align: left;
}
.zh-filter-deck--detail {
  margin-bottom: 28px;
}

.zh-filter-panel {
  position: relative;
  padding: 16px 18px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(24, 14, 42, 0.75), rgba(10, 6, 20, 0.92));
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.zh-filter-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(251, 191, 36, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: zh-panel-shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes zh-panel-shimmer {
  0%, 70%, 100% { transform: translateX(-100%); }
  85% { transform: translateX(100%); }
}
.zh-filter-panel:hover {
  border-color: rgba(251, 191, 36, 0.32);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.22);
}

.zh-filter-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.zh-filter-panel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  color: #fde68a;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(251, 191, 36, 0.15));
  border: 1px solid rgba(251, 191, 36, 0.25);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}
.zh-filter-panel-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #faf5ff;
}
.zh-filter-panel-desc {
  margin: 4px 0 0;
  font-size: 0.72rem;
  color: rgba(196, 181, 220, 0.65);
}

.zh-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zh-filter-panel .zh-hub-type,
.zh-filter-panel .zh-detail-subchip {
  margin: 0;
}

.zh-premium .zh-hub-type-strip {
  display: none;
}

.zh-preview-stage {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(168, 85, 247, 0.12);
}

.zh-preview-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.5), rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
  animation: zh-border-glow 6s linear infinite;
}
@keyframes zh-border-glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

.zh-score-visual {
  display: grid;
  gap: 20px;
  margin: 0 0 22px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(6, 4, 14, 0.55);
  border: 1px solid rgba(168, 85, 247, 0.15);
}
@media (min-width: 768px) {
  .zh-score-visual {
    grid-template-columns: minmax(240px, 1fr) minmax(200px, 1.1fr);
    align-items: center;
    gap: 24px;
    padding: 20px 22px;
  }
}
.zh-score-visual--detail {
  margin-bottom: 0;
}

.zh-radar-block {
  text-align: center;
}
.zh-radar-caption {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(253, 230, 138, 0.9);
}
.zh-radar-caption i {
  margin-right: 6px;
}

.zh-radar-frame {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.zh-radar-canvas {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.35));
}

.zh-radar-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.zh-deco-star {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fde68a;
  clip-path: polygon(50% 0%, 61% 38%, 100% 38%, 68% 59%, 79% 100%, 50% 76%, 21% 100%, 32% 59%, 0% 38%, 39% 38%);
  opacity: 0.5;
  animation: zh-star-twinkle 3s ease-in-out infinite;
}
.zh-deco-star--1 { top: 8%; left: 12%; animation-delay: 0s; }
.zh-deco-star--2 { top: 18%; right: 8%; width: 8px; height: 8px; animation-delay: 0.8s; }
.zh-deco-star--3 { bottom: 12%; left: 20%; width: 10px; height: 10px; animation-delay: 1.4s; }
@keyframes zh-star-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 0.95; transform: scale(1.15) rotate(18deg); }
}

.zh-radar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.zh-radar-legend-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: rgba(18, 10, 32, 0.75);
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.zh-radar-legend-chip:hover,
.zh-radar-legend-chip.is-active {
  border-color: rgba(251, 191, 36, 0.55);
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.18), rgba(124, 58, 237, 0.22));
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.2);
  transform: translateY(-2px);
}
.zh-radar-legend-label {
  font-size: 0.68rem;
  color: rgba(196, 181, 220, 0.85);
}
.zh-radar-legend-val {
  margin-top: 2px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fde68a;
}

.zh-hub-scores--bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zh-score-grid--bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zh-hub-score-row.is-focus,
.zh-score-card.is-focus {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.12);
}

.zh-preview-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}
.zh-btn-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 22px;
  text-align: left;
  box-sizing: border-box;
}
.zh-btn-cta-text {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}
.zh-btn-cta-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
  color: rgba(26, 10, 46, 0.85);
}
.zh-btn-cta-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.zh-btn-cta:hover .zh-btn-cta-icon {
  transform: translateX(6px);
}

.zh-hub-nav-grid--duo {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .zh-hub-nav-grid--duo {
    grid-template-columns: 1fr;
  }
}

.zh-chip-pulse {
  animation: zh-chip-flash 0.42s ease;
}
@keyframes zh-chip-flash {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55); }
  100% { box-shadow: 0 0 0 14px rgba(251, 191, 36, 0); }
}

.zh-premium .zh-hub-type,
.zh-premium .zh-detail-chip,
.zh-premium .zh-detail-subchip {
  transition: transform 0.2s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.2s, border-color 0.2s;
}
.zh-premium .zh-hub-type:hover,
.zh-premium .zh-detail-chip:hover,
.zh-premium .zh-detail-subchip:hover {
  transform: translateY(-2px) scale(1.02);
}

.zh-premium .zh-detail-share-row,
.zh-premium .zh-btn-share {
  display: none !important;
}

.ts-scope.zodiac-home .lj-daily-hero {
  min-height: clamp(480px, 62vh, 880px);
  padding-bottom: 40px;
}

.zh-premium .zh-filter-deck--detail .zh-detail-subperiod {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

/* 滚动入场 */
.zh-premium .zh-reveal {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.zh-premium .zh-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .zh-premium .zh-aurora,
  .zh-premium .zh-orb,
  .zh-premium .zh-masthead-title,
  .zh-premium .zh-preview-glyph-ring,
  .zh-premium .zh-scroll-hint,
  .zh-premium .zh-detail-glyph--pulse,
  .zh-filter-panel::before,
  .zh-deco-star,
  .zh-preview-card::after {
    animation: none !important;
  }
  .zh-particle-canvas {
    display: none;
  }
  .zh-premium .zh-reveal {
    opacity: 1;
    translate: none;
    transition: none;
  }
  .zh-premium .zh-score-card-bar i,
  .zh-premium .zh-hub-bar i {
    transition: none;
  }
}
