/* ==============================================================================
   大屏种草流创新卡片体系样式库 (TV Feed Cards Design System)
   1. 重点大卡 (Hero Spotlight Card · 跨 2 列)
   2. 博主名片 (Creator Spotlight Card · 1 列)
   3. 文字金句卡 (Editorial Quote Card · 1 列)
   ============================================================================== */

:root {
  --showcase-bg: #090d16;
  --panel-bg: rgba(18, 24, 38, 0.7);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --accent-cyan: #06b6d4;
  --accent-blue: #0284c7;
  --accent-gold: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-purple: #8b5cf6;
}

/* 评审台整体容器 */
body.showcase-body {
  margin: 0;
  padding: 0;
  background-color: var(--showcase-bg);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(6, 182, 212, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(139, 92, 246, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(244, 63, 94, 0.08) 0%, transparent 50%);
  color: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
}

.showcase-header {
  padding: 24px 48px 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 14, 24, 0.7);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.showcase-title-area h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  color: #ffffff;
}

.showcase-desc {
  margin: 6px 0 0 0;
  font-size: 14px;
  color: #94a3b8;
}

.showcase-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-tag {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
}

.showcase-main {
  padding: 32px 48px 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1824px;
  margin: 0 auto;
}

.section-title-bar {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.section-title-bar h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.section-title-bar span {
  font-size: 13.5px;
  color: #94a3b8;
}

/* ==============================================================================
   一、重点大卡样式 (Hero Spotlight Card · 跨 2 列宽画幅)
   ============================================================================== */
.card-hero-spotlight {
  position: relative;
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  height: 288px;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

/* 左侧超宽电影画卷 (占比约 63%) */
.hero-media-wrap {
  position: relative;
  flex: 0 0 63%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #0c1222;
  overflow: hidden;
}

.hero-media-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.35) 75%, rgba(15, 23, 42, 0.8) 100%);
  pointer-events: none;
}

.hero-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-duration-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
}

.hero-play-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.hero-preview-cue {
  position: absolute;
  bottom: 22px;
  left: 74px;
  z-index: 5;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  opacity: 0.9;
}

/* 右侧深度看点与交互面板 (占比约 37%) */
.hero-content-panel {
  flex: 1;
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  color: #0f172a;
  box-sizing: border-box;
}

.hero-panel-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-category-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0284c7;
}

.hero-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.hero-synopsis {
  display: none;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.hero-score-tag {
  font-size: 12px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 5px;
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #fed7aa;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 1px 3px rgba(234, 88, 12, 0.1);
  transition: all 0.25s ease;
}

.card-hero-spotlight.focused .hero-score-tag,
.card-hero-spotlight:hover .hero-score-tag {
  background: #ea580c;
  color: #ffffff;
  border-color: #ea580c;
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.45);
}

.hero-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  background: #f1f5f9;
  color: #475569;
}

.hero-panel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.hero-action-hint {
  font-size: 12.5px;
  font-weight: 800;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.hero-author-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-author-info {
  display: flex;
  flex-direction: column;
}

.hero-author-name {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.hero-likes {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.hero-score-badge {
  font-size: 13px;
  font-weight: 800;
  color: #ea580c;
  background: #fff7ed;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #ffedd5;
}

/* 重点大卡【落焦态】 */
.card-hero-spotlight.focused,
.card-hero-spotlight:hover {
  transform: scale(1.05);
  border-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.45), 0 0 28px rgba(56, 189, 248, 0.35) !important;
}

.card-hero-spotlight.focused .hero-play-btn,
.card-hero-spotlight:hover .hero-play-btn {
  transform: scale(1.15);
  background: #0284c7;
  color: #ffffff;
}

.card-hero-spotlight.focused .hero-title,
.card-hero-spotlight:hover .hero-title {
  color: #0284c7;
}

/* ==============================================================================
   二、博主名片样式 (Creator Spotlight Card · 1 列)
   ============================================================================== */
.card-creator-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  height: 310px;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

/* 顶部背景氛围图 */
.creator-banner {
  position: relative;
  height: 84px;
  background-size: cover;
  background-position: center;
  background-color: #1e293b;
}

.creator-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.creator-tag-top {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 5;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #f8fafc;
}

/* 主体信息区 */
.creator-body {
  flex: 1;
  padding: 0 18px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
}

.creator-profile-header {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: -30px;
  z-index: 10;
}

.creator-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  overflow: visible;
  flex-shrink: 0;
}

.creator-avatar-wrap img,
.creator-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.creator-v-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f59e0b;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.creator-name-block {
  flex: 1;
  padding-bottom: 4px;
}

.creator-name {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
}

.creator-fans {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: 2px;
}

.creator-bio {
  margin: 8px 0 0 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 博主双代表作橱窗 */
.creator-works-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.creator-work-item {
  position: relative;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.creator-work-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.creator-work-title {
  position: absolute;
  bottom: 4px;
  left: 6px;
  right: 6px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.creator-action-bar {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}

.creator-visit-btn {
  font-size: 12.5px;
  font-weight: 800;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.creator-like-count {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

/* 博主名片【落焦态】 */
.card-creator-spotlight.focused,
.card-creator-spotlight:hover {
  transform: scale(1.03);
  border-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.45), 0 0 28px rgba(251, 191, 36, 0.3) !important;
}

.card-creator-spotlight.focused .creator-avatar-wrap,
.card-creator-spotlight:hover .creator-avatar-wrap {
  box-shadow: 0 0 0 3px #f59e0b, 0 6px 20px rgba(245, 158, 11, 0.5);
}

.card-creator-spotlight.focused .creator-name,
.card-creator-spotlight:hover .creator-name {
  color: #ea580c;
}

/* ==============================================================================
   三、文字金句卡样式 (Editorial Quote Card · 1 列 杂志风)
   ============================================================================== */
.card-editorial-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  /* 深邃极光渐变黑底，极致纸墨高级感 */
  background: linear-gradient(145deg, #111827 0%, #0f172a 60%, #1e1b4b 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  height: 310px;
  padding: 24px 22px 20px 22px;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

/* 背景大引号装饰水印 */
.card-editorial-quote::before {
  content: '“';
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 1;
}

.quote-header-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-stamp-tag {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(244, 63, 94, 0.2);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: #fb7185;
  display: flex;
  align-items: center;
  gap: 5px;
}

.quote-play-cue {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}

.quote-play-cue svg {
  width: 14px;
  height: 14px;
  fill: #38bdf8;
}

/* 核心金句排版 (Typography) */
.quote-content-block {
  position: relative;
  z-index: 2;
  margin: 10px 0 8px 0;
}

.quote-main-text {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.48;
  letter-spacing: -0.2px;
  font-family: "PingFang SC", -apple-system, sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.quote-highlight {
  color: #38bdf8;
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.5);
  text-underline-offset: 4px;
}

.quote-source {
  margin: 10px 0 0 0;
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
}

/* 底部互动与出处 */
.quote-footer {
  position: relative;
  z-index: 2;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-critic-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-critic-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-critic-name {
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
}

.quote-metrics {
  font-size: 12px;
  color: #38bdf8;
  font-weight: 700;
}

/* 文字金句卡【落焦态】 */
.card-editorial-quote.focused,
.card-editorial-quote:hover {
  transform: scale(1.03);
  border-color: #ffffff !important;
  background: linear-gradient(145deg, #1e1b4b 0%, #0f172a 60%, #1e293b 100%);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.45), 0 0 28px rgba(168, 85, 247, 0.35) !important;
}

.card-editorial-quote.focused .quote-main-text,
.card-editorial-quote:hover .quote-main-text {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}

.card-editorial-quote.focused .quote-stamp-tag,
.card-editorial-quote:hover .quote-stamp-tag {
  background: #f43f5e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

/* ==============================================================================
   评审台对比网格与实景排版
   ============================================================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.comparison-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 24px;
}

.state-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 6px;
}

.state-default {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.state-focused {
  background: rgba(6, 182, 212, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.4);
}

/* 3 列大屏仿真容器 */
.tv-composite-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  width: 100%;
}

.tv-composite-row-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
}

/* 标准横图卡（用于组合对比） */
.demo-standard-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  height: 310px;
  box-sizing: border-box;
}

.demo-standard-cover {
  height: 215px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.demo-standard-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.demo-standard-body {
  flex: 1;
  padding: 12px 16px 14px 16px;
  display: flex;
  gap: 12px;
  background: #ffffff;
  box-sizing: border-box;
}

.demo-standard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-standard-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-standard-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.38;
}

.demo-standard-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

/* ==============================================================================
   博主卡片 3 大全新重构设计方向 (Creator Redesign Showcase)
   方向 A: 沉浸大片写真专栏卡 (Creator Persona Portrait Hero)
   方向 B: 达人主推视频内容卡 (Creator Main Feature Card)
   方向 C: 杂志专栏黑胶微合辑 (Curator Editorial Box)
   ============================================================================== */

/* ==============================================================================
   2. 博主大片写真专栏卡 (Creator Persona Portrait Hero · 1 列)
   大片人物写真多图平滑轮播 + 杂志封面质感 + 交互揭示操作
   ============================================================================== */
.card-creator-style-a {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 310px;
  isolation: isolate;
  contain: paint;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  padding: 16px 20px 16px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

/* 背景多图平滑轮播图 */
.creator-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.creator-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.creator-bg-slide.active {
  opacity: 1;
}

/* 轮播小指示条（极简通透） */
.creator-slider-dots {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.creator-slider-dot {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.creator-slider-dot.active {
  width: 22px;
  background: #f59e0b;
}

/* 渐变遮罩：顶部微暗，底部深色渐变保证文字高度可读 */
.card-creator-style-a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.96) 100%);
  pointer-events: none;
  z-index: 1;
}

.creator-a-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 24px;
}

/* 左上角标签按用户要求去除 */
.creator-a-tag {
  display: none;
}

/* 右上角已更新期数：按最新需求由第三行统一呈现专栏与期数，此处保持纯净隐藏 */
.creator-a-works-count {
  display: none;
}

.creator-a-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-a-author-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-a-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.creator-a-info {
  display: flex;
  flex-direction: column;
}

.creator-a-name {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.2px;
  transition: color 0.25s ease;
}

/* 1. 关注数与热度：纯自然间距、带图标、去分割符 */
.creator-a-meta {
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.25s ease;
}

.creator-a-meta .meta-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 2. 引言金句行：字号加大（15.5px），提升大屏 3 米阅读质感 */
.creator-a-quote {
  margin: 6px 0 0 0;
  font-size: 15.5px;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transition: color 0.25s ease, font-weight 0.25s ease;
}

/* 3. 第三行文字：探索他的栏目，共56期（默认隐藏折叠，落焦平滑展开） */
.creator-a-third-line {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  pointer-events: none;
  font-size: 13.5px;
  font-weight: 800;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
  transition: max-height 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.28s ease,
              transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              margin-top 0.32s ease,
              color 0.25s ease;
}

.creator-a-third-line .column-arrow {
  font-size: 15px;
  transition: transform 0.25s ease;
}

/* 落焦激活态交互表现：整体上移 + 第三行平滑展开 + 金光流动环绕 */
.card-creator-style-a.focused,
.card-creator-style-a:hover {
  transform: scale(1.03);
  border-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.5), 0 0 26px rgba(251, 191, 36, 0.35) !important;
}

/* 关键交互：落焦时底部整体平滑上移 */
.card-creator-style-a.focused .creator-a-bottom,
.card-creator-style-a:hover .creator-a-bottom {
  transform: translateY(-8px);
}

/* 关键交互：落焦时展开第三行文字 */
.card-creator-style-a.focused .creator-a-third-line,
.card-creator-style-a:hover .creator-a-third-line {
  max-height: 30px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;
}

.card-creator-style-a.focused .creator-a-third-line .column-arrow,
.card-creator-style-a:hover .creator-a-third-line .column-arrow {
  transform: translateX(3px);
}

.card-creator-style-a.focused .creator-a-avatar,
.card-creator-style-a:hover .creator-a-avatar {
  box-shadow: 0 0 0 3px #f59e0b, 0 6px 20px rgba(245, 158, 11, 0.6);
  transform: scale(1.05);
}

.card-creator-style-a.focused .creator-a-name,
.card-creator-style-a:hover .creator-a-name {
  color: #fbbf24;
}

.card-creator-style-a.focused .creator-a-meta,
.card-creator-style-a:hover .creator-a-meta {
  color: #fde68a;
}

.card-creator-style-a.focused .creator-a-quote,
.card-creator-style-a:hover .creator-a-quote {
  color: #ffffff;
  font-weight: 600;
}

.card-creator-style-a.focused .creator-a-likes-count,
.card-creator-style-a:hover .creator-a-likes-count {
  color: #fbbf24;
  font-weight: 800;
}

/* ---------- 方向 B: 达人主打视频内容卡 ---------- */
.card-creator-style-b {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  height: 310px;
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

/* 顶部：精致创作者信息头 (高 68px) */
.creator-b-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.creator-b-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.creator-b-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.35);
}

.creator-b-name-col {
  display: flex;
  flex-direction: column;
}

.creator-b-name {
  margin: 0;
  font-size: 15.5px;
  font-weight: 800;
  color: #0f172a;
}

.creator-b-badge {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
}

.creator-b-follow-pill {
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 14px;
  background: #f1f5f9;
  color: #0284c7;
  border: 1px solid #e2e8f0;
}

/* 中间主打代表作大图 (占剩余高度) */
.creator-b-media {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.creator-b-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
}

.creator-b-hit-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(225, 29, 72, 0.9);
  color: #ffffff;
}

.creator-b-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 3;
  transition: transform 0.25s ease;
}

.creator-b-play-icon svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.creator-b-media-info {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 3;
}

.creator-b-video-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.creator-b-video-meta {
  font-size: 12px;
  color: #e2e8f0;
  margin-top: 4px;
  font-weight: 600;
}

.card-creator-style-b.focused,
.card-creator-style-b:hover {
  transform: scale(1.03);
  border-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.45), 0 0 28px rgba(56, 189, 248, 0.35) !important;
}

.card-creator-style-b.focused .creator-b-play-icon,
.card-creator-style-b:hover .creator-b-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: #0284c7;
  color: #ffffff;
}

.card-creator-style-b.focused .creator-b-follow-pill,
.card-creator-style-b:hover .creator-b-follow-pill {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

/* ---------- 方向 C: 杂志专栏黑胶微合辑 ---------- */
.card-creator-style-c {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  height: 310px;
  background: linear-gradient(145deg, #18181b 0%, #09090b 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 22px 20px 18px 20px;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

.creator-c-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creator-c-tag {
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cbd5e1;
}

.creator-c-heat {
  font-size: 12px;
  color: #f59e0b;
  font-weight: 800;
}

/* 中间：黑胶碟片/专栏封面错层效果 */
.creator-c-middle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0;
}

.creator-c-vinyl {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #27272a 0, #18181b 4px, #09090b 8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-c-vinyl-center {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #ffffff;
}

.creator-c-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.creator-c-series-title {
  font-size: 12px;
  font-weight: 800;
  color: #06b6d4;
  letter-spacing: 0.5px;
}

.creator-c-name {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #f4f4f5;
  line-height: 1.3;
}

.creator-c-desc {
  font-size: 12px;
  color: #a1a1aa;
  line-height: 1.4;
  margin-top: 2px;
}

.creator-c-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-c-latest {
  font-size: 12px;
  color: #71717a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.creator-c-listen-btn {
  font-size: 12px;
  font-weight: 800;
  color: #06b6d4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-creator-style-c.focused,
.card-creator-style-c:hover {
  transform: scale(1.03);
  border-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.45), 0 0 28px rgba(34, 211, 238, 0.35) !important;
}

.card-creator-style-c.focused .creator-c-vinyl,
.card-creator-style-c:hover .creator-c-vinyl {
  transform: rotate(25deg) scale(1.08);
  border-color: #06b6d4;
}

.card-creator-style-c.focused .creator-c-name,
.card-creator-style-c:hover .creator-c-name {
  color: #22d3ee;
}

/* ==============================================================================
   5. 全新卡片控件：有声类 / 音乐电台卡片 (Audio Spotlight Card · 1 列)
   专为有声书、播客、音乐电台博主推节目打造 · 拟物黑胶 + 动态音波
   ============================================================================== */
@keyframes vinylRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes audioWavePulse {
  0%, 100% { height: 4px; opacity: 0.6; }
  50% { height: 16px; opacity: 1; }
}

.card-audio-spotlight {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 310px;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.12) 0%, transparent 60%),
              linear-gradient(145deg, #18181b 0%, #09090b 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 22px 20px 18px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}

.audio-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audio-category-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.audio-metrics-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 动态跳动音波条 */
.audio-wave-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.audio-wave-bar {
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: #38bdf8;
  transition: height 0.2s ease;
}

.audio-heat-text {
  font-size: 12px;
  font-weight: 800;
  color: #f59e0b;
}

/* 中间黑胶唱机与节目信息展示 */
.audio-main-body {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 6px 0;
}

.audio-vinyl-outer {
  position: relative;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #27272a 0, #18181b 4px, #09090b 8px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.audio-vinyl-needle {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.audio-vinyl-label {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
}

.audio-vinyl-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #09090b;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.audio-info-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.audio-curator-label {
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.audio-program-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.audio-desc-text {
  margin: 0;
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 底部状态与操作栏 */
.audio-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-latest-episode {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}

.audio-play-pill-btn {
  font-size: 12px;
  font-weight: 800;
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.1);
  transition: all 0.25s ease;
}

/* 落焦激活态 */
.card-audio-spotlight.focused,
.card-audio-spotlight:hover {
  transform: scale(1.03);
  border-color: #ffffff !important;
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.4), 0 0 28px rgba(56, 189, 248, 0.35) !important;
}

/* 落焦时黑胶唱片自转动画 */
.card-audio-spotlight.focused .audio-vinyl-outer,
.card-audio-spotlight:hover .audio-vinyl-outer {
  border-color: #38bdf8;
  transform: scale(1.06);
  animation: vinylRotate 8s linear infinite;
}

/* 落焦时音波欢快跳动 */
.card-audio-spotlight.focused .audio-wave-bar:nth-child(1),
.card-audio-spotlight:hover .audio-wave-bar:nth-child(1) {
  animation: audioWavePulse 0.6s infinite ease-in-out 0.1s;
}
.card-audio-spotlight.focused .audio-wave-bar:nth-child(2),
.card-audio-spotlight:hover .audio-wave-bar:nth-child(2) {
  animation: audioWavePulse 0.5s infinite ease-in-out 0.25s;
}
.card-audio-spotlight.focused .audio-wave-bar:nth-child(3),
.card-audio-spotlight:hover .audio-wave-bar:nth-child(3) {
  animation: audioWavePulse 0.7s infinite ease-in-out 0.05s;
}
.card-audio-spotlight.focused .audio-wave-bar:nth-child(4),
.card-audio-spotlight:hover .audio-wave-bar:nth-child(4) {
  animation: audioWavePulse 0.55s infinite ease-in-out 0.2s;
}

.card-audio-spotlight.focused .audio-program-title,
.card-audio-spotlight:hover .audio-program-title {
  color: #38bdf8;
}

.card-audio-spotlight.focused .audio-play-pill-btn,
.card-audio-spotlight:hover .audio-play-pill-btn {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

/* ==============================================================================
   五、整行全宽控件 1：自动滚动的文字主题入口 (Topic Marquee Row)
   ============================================================================== */
.row-topic-marquee {
  width: 100%;
  position: relative;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  padding: 10px 14px;
  box-sizing: border-box;
  overflow: hidden;
  height: 68px;
}

/* 左侧固定引言锚点 */
.topic-lead-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 10px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  z-index: 3;
}

.topic-lead-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  animation: flamePulse 2s ease-in-out infinite;
}

@keyframes flamePulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.2); }
}

.topic-lead-text {
  display: flex;
  flex-direction: column;
}

.topic-lead-title {
  font-size: 14.5px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.topic-lead-sub {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

/* 右侧无缝循环滚动跑马带 */
.topic-marquee-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-left: 14px;
  padding: 10px 0;
  margin-top: -10px;
  margin-bottom: -10px;
  /* 左右两端优雅平滑羽化遮罩，杜绝生硬截断 */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 36px, rgba(0, 0, 0, 1) calc(100% - 36px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 36px, rgba(0, 0, 0, 1) calc(100% - 36px), transparent 100%);
}

.topic-marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: topicMarqueeScroll 42s linear infinite;
  padding: 8px 0;
}

/* 当用户鼠标悬浮或按键落焦选中的时候，滚动平缓暂停 */
.row-topic-marquee:hover .topic-marquee-track,
.row-topic-marquee:focus-within .topic-marquee-track {
  animation-play-state: paused;
}

@keyframes topicMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 主题胶囊 Pill */
.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.topic-pill-tag {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.topic-pill-count {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.topic-pill-enter {
  font-size: 11.5px;
  font-weight: 800;
  color: #0284c7;
  display: none;
}

/* 落焦激活态（遥控器移入 / 鼠标 hover） */
.topic-pill.focused,
.topic-pill:hover {
  background: #ffffff !important;
  color: #0f172a !important;
  transform: scale(1.08) translateY(-1px);
  border-color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.45), 0 0 0 2px #38bdf8;
  position: relative !important;
  z-index: 50 !important;
}

.topic-pill.focused .topic-pill-count,
.topic-pill:hover .topic-pill-count {
  background: rgba(2, 132, 199, 0.15);
  color: #0284c7;
}

.topic-pill.focused .topic-pill-enter,
.topic-pill:hover .topic-pill-enter {
  display: inline-block;
}

/* ==============================================================================
   六、整行全宽控件 2：竖屏短片入口 (Vertical Shorts Row · 9:16 微剧通道)
   ============================================================================== */
.row-vertical-shorts {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

/* 顶部信息与导视条 */
.shorts-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

.shorts-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shorts-header-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.3px;
}

.shorts-header-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(244, 63, 94, 0.4);
}

.shorts-header-sub {
  font-size: 13px;
  color: #94a3b8;
}

.shorts-header-action {
  font-size: 13px;
  color: #38bdf8;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.shorts-header-action:hover {
  color: #7dd3fc;
}

/* 6 张竖屏短片横排栅格 */
.shorts-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
}

/* 单张竖屏短剧海报卡片 (严格 300×444 等比缩小 · 黄金纵向高宽比 1:1.48) */
.card-vertical-short {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 444; /* 严格遵循 300*444 等比缩小海报比例规范 (高宽比 1.48) */
  height: auto;
  min-height: 414px; /* 在 1920 大屏基准下对应单卡宽 ~280px 的等比纵向高度 (告别原 310px 矮胖问题) */
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background-color: #0f172a;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

/* 背景竖图海报 */
.short-poster-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.4s ease, filter 0.3s ease;
}

/* 渐变遮罩：上下暗，中间透，完美展现 300*444 竖版海报主角与底纹 */
.card-vertical-short::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0.4) 62%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

/* 顶部标签行 */
.short-top-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.short-pill-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.short-heat-count {
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* 画面中央大播放钮（随 300*444 纵向加长微调居中重心，落焦时展开动效） */
.short-center-play {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 3;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.short-center-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/* 底部文案区 */
.short-bottom-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(0);
  transition: transform 0.28s ease;
}

.short-title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  transition: color 0.2s ease;
}

.short-sub-desc {
  margin: 0;
  font-size: 12px;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* 落焦时露出的操作引导条 */
.short-focus-cue {
  font-size: 11.5px;
  font-weight: 800;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  max-height: 0;
  opacity: 0;
  transform: translateY(6px);
  overflow: hidden;
  transition: all 0.28s ease;
}

/* 竖屏短片落焦激活态 */
.card-vertical-short.focused,
.card-vertical-short:hover {
  transform: scale(1.06) translateY(-6px);
  border-color: #ffffff !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.7), 0 0 28px rgba(56, 189, 248, 0.45) !important;
  z-index: 5;
}

.card-vertical-short.focused .short-poster-bg,
.card-vertical-short:hover .short-poster-bg {
  transform: scale(1.05);
}

.card-vertical-short.focused .short-center-play,
.card-vertical-short:hover .short-center-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-vertical-short.focused .short-title,
.card-vertical-short:hover .short-title {
  color: #38bdf8;
}

.card-vertical-short.focused .short-focus-cue,
.card-vertical-short:hover .short-focus-cue {
  max-height: 24px;
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================================================
   五、系列宇宙主题流卡片体系 (Theme Stream Universe Cards)
   1. 竖版 300×444 三海报舞台卡 (card-theme-vertical / note-template-theme)
   2. 16:9 横幅多翼画卷卡 (card-theme-horizontal / note-template-pin)
   ============================================================================== */

.card-universe-theme,
.feed-note-card.note-template-theme,
.feed-note-card.note-template-pin {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  height: 360px;
  min-height: 360px;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease,
              background 0.28s ease;
}

.theme-card-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 18px 20px 16px 20px;
  box-sizing: border-box;
}

.pin-card-container {
  padding: 16px 18px 14px 18px;
}

/* 顶部通栏 */
.theme-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  z-index: 3;
}

.theme-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.theme-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

.theme-tag-dot.dot-cyan {
  background: #00d2ff !important;
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.6) !important;
}

.theme-main-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.2px;
}

.theme-enter-capsule {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-enter-capsule .enter-arrow {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

/* ================== 方向 A：竖版 300×444 舞台 ================== */
.theme-canvas-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  width: 100%;
  flex: 1;
  margin-top: 8px;
  box-sizing: border-box;
}

.theme-poster-frame {
  position: relative;
  aspect-ratio: 300 / 444;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease,
              opacity 0.28s ease;
}

.theme-poster-frame.poster-slot-left,
.theme-poster-frame.poster-slot-right {
  height: 220px;
  width: 148px;
  opacity: 0.85;
  z-index: 1;
  transform: scale(0.96);
}

.theme-poster-frame.poster-slot-center.poster-center-hero {
  height: 254px;
  width: 172px;
  z-index: 3;
  opacity: 1;
  border: 2.5px solid #0284c7;
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.32);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.35) 50%, rgba(15, 23, 42, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px;
  box-sizing: border-box;
}

.poster-overlay-hero {
  padding: 10px 12px;
}

.poster-badge {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.75);
  padding: 2px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
}

.poster-badge.badge-hot {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.4);
}

.poster-text {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-text-large {
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-desc {
  font-size: 10.5px;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* ================== 方向 B：16:9 横幅多翼画卷 ================== */
.horizontal-overlap-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  margin-top: 6px;
  overflow: visible;
}

.h-poster-frame {
  position: absolute;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s ease,
              border-color 0.28s ease,
              opacity 0.28s ease;
}

.h-poster-frame.h-frame-left {
  left: 6px;
  width: 258px;
  height: 145px;
  z-index: 1;
  opacity: 0.85;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: scale(0.96);
}

.h-poster-frame.h-frame-right {
  right: 6px;
  width: 258px;
  height: 145px;
  z-index: 1;
  opacity: 0.85;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: scale(0.96);
}

.h-poster-frame.h-frame-center.h-frame-hero {
  position: relative;
  width: 334px;
  height: 188px;
  z-index: 3;
  opacity: 1;
  border: 2.5px solid #0f172a;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.35);
}

.h-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px;
  box-sizing: border-box;
}

.h-overlay-hero {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.35) 40%, rgba(15, 23, 42, 0.92) 100%);
  padding: 10px 14px;
}

.h-badge {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.75);
  padding: 2px 7px;
  border-radius: 4px;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
}

.h-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.h-title-large {
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.h-desc {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================== 指示器与计数器 ================== */
.carousel-nav-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(4px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 4;
}

.carousel-nav-indicator.nav-left { left: 4px; }
.carousel-nav-indicator.nav-right { right: 4px; }

.card-universe-theme.focused .carousel-nav-indicator,
.card-universe-theme:hover .carousel-nav-indicator,
.feed-note-card.note-template-theme.focused .carousel-nav-indicator,
.feed-note-card.note-template-pin.focused .carousel-nav-indicator {
  opacity: 0.9;
}

.carousel-counter-pill {
  position: absolute;
  bottom: 6px;
  right: 12px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  z-index: 4;
}

/* ================== 获焦交互态 (Focused State) ================== */
.card-theme-vertical.focused,
.card-theme-vertical:hover,
.feed-note-card.note-template-theme.focused {
  border-color: #0284c7 !important;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.35) !important;
  transform: translateY(-8px) scale(1.02) !important;
  background: #f1f5f9 !important;
}

.card-theme-vertical.focused .theme-enter-capsule,
.card-theme-vertical:hover .theme-enter-capsule,
.feed-note-card.note-template-theme.focused .theme-enter-capsule {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
  transform: scale(1.05);
}

.card-theme-vertical.focused .poster-center-hero,
.card-theme-vertical:hover .poster-center-hero,
.feed-note-card.note-template-theme.focused .poster-center-hero {
  transform: translateY(-6px) scale(1.04);
  border-color: #00d2ff;
  box-shadow: 0 18px 42px rgba(0, 210, 255, 0.45);
}

.card-theme-horizontal.focused,
.card-theme-horizontal:hover,
.feed-note-card.note-template-pin.focused {
  border-color: #00d2ff !important;
  box-shadow: 0 16px 40px rgba(0, 210, 255, 0.35) !important;
  transform: translateY(-8px) scale(1.02) !important;
  background: #f1f5f9 !important;
}

.card-theme-horizontal.focused .theme-enter-capsule,
.card-theme-horizontal:hover .theme-enter-capsule,
.feed-note-card.note-template-pin.focused .theme-enter-capsule {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
  border-color: #67e8f9;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.45);
  transform: scale(1.05);
}

.card-theme-horizontal.focused .h-frame-hero,
.card-theme-horizontal:hover .h-frame-hero,
.feed-note-card.note-template-pin.focused .h-frame-hero {
  border-color: #00d2ff !important;
  box-shadow: 0 18px 42px rgba(0, 210, 255, 0.5) !important;
  transform: scale(1.03);
}

/* 1:1 对称大画幅双联排 */
.universe-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

/* 全局焦点无遮挡 & 保持在最前保证 */
.card-hero-spotlight.focused,
.card-creator-spotlight.focused,
.card-editorial-quote.focused,
.card-creator-style-a.focused,
.card-audio-spotlight.focused,
.card-vertical-short.focused,
.card-theme-horizontal.focused,
.topic-pill.focused {
  position: relative !important;
  z-index: 50 !important;
}



