/* site-craft · 成品13 · 霜蓝书页 v3
   色板：霜蓝 #0284c7 · 深海 #0c4a6e · 冰纸 #f0f9ff
   布局：左品牌顶栏 + 书签导航 + 分栏英雄 + 竖卡 + 播放舞台
   背景：彩色星星点点飘动 */

:root {
  --hc-frost: #0284c7;
  --hc-deep: #0c4a6e;
  --hc-ice: #38bdf8;
  --hc-paper: #f0f9ff;
  --hc-sheet: #e0f2fe;
  --hc-surface: #ffffff;
  --hc-ink: #0c4a6e;
  --hc-muted: #64748b;
  --hc-line: rgba(12, 74, 110, 0.12);
  --hc-primary: var(--hc-frost);
  --hc-secondary: var(--hc-deep);
  --hc-cta: var(--hc-frost);
  --hc-bg: var(--hc-paper);
  --hc-max: 1180px;
  --hc-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --hc-display: "DM Sans", "Noto Sans SC", "PingFang SC", sans-serif;
  --site-accent: #0284c7;
  --site-secondary: #0c4a6e;
  --site-ink: #0c4a6e;
  --site-bg: #f0f9ff;
  color-scheme: light;
}

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.hc-body {
  margin: 0 !important;
  min-height: 100vh !important;
  color: var(--hc-ink) !important;
  font-family: var(--hc-sans) !important;
  background: var(--hc-paper) !important;
  background-image:
    radial-gradient(900px 420px at 100% -10%, rgba(56, 189, 248, 0.28), transparent 55%),
    radial-gradient(700px 360px at 0% 20%, rgba(2, 132, 199, 0.1), transparent 50%),
    linear-gradient(180deg, #f8fbff 0%, #f0f9ff 45%, #e0f2fe 100%) !important;
  overflow-x: clip !important;
  position: relative !important;
}

/* 彩色星星点点 · 固定背景层 */
body.hc-body .hc-starfield {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  contain: strict;
}

body.hc-body .hc-starfield span {
  position: absolute;
  display: block;
  width: var(--s, 3px);
  height: var(--s, 3px);
  left: var(--lx, 50%);
  top: var(--ly, 50%);
  border-radius: 50%;
  background: var(--c, #38bdf8);
  box-shadow:
    0 0 4px var(--c, #38bdf8),
    0 0 10px color-mix(in srgb, var(--c, #38bdf8) 55%, transparent);
  opacity: 0.55;
  will-change: transform, opacity;
  animation: hc-star-drift var(--d, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

/* 部分做成小星形，而不是纯圆点 */
body.hc-body .hc-starfield span:nth-child(3n) {
  border-radius: 0;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
    50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
  box-shadow: 0 0 8px color-mix(in srgb, var(--c, #38bdf8) 70%, transparent);
}

body.hc-body .hc-top,
body.hc-body .hc-main,
body.hc-body .hc-foot {
  position: relative;
  z-index: 1;
}

body.hc-body .hc-top {
  z-index: 220 !important;
}

@keyframes hc-star-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.85) rotate(0deg);
    opacity: 0.25;
  }
  35% {
    transform: translate3d(var(--dx, 12px), calc(var(--dy, -28px) * 0.6), 0) scale(1.15) rotate(8deg);
    opacity: 0.9;
  }
  70% {
    transform: translate3d(calc(var(--dx, 12px) * -0.6), var(--dy, -28px), 0) scale(1) rotate(-6deg);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.85) rotate(0deg);
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.hc-body .hc-starfield span:nth-child(5n) {
    animation-name: hc-star-twinkle;
    animation-timing-function: ease-in-out;
  }
}

@keyframes hc-star-twinkle {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0.15;
  }
  50% {
    transform: translate3d(var(--dx, 8px), var(--dy, -18px), 0) scale(1.35);
    opacity: 1;
  }
}

body.hc-body a { color: var(--hc-frost) !important; text-decoration: none !important; }
body.hc-body a:hover { color: var(--hc-deep) !important; }

body.hc-body h1,
body.hc-body h2,
body.hc-body .hc-brand__text,
body.hc-body .hc-foot__brand strong {
  font-family: var(--hc-display) !important;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   头部：左品牌 + 搜索 + 底线导航（非胶囊堆叠）
   ══════════════════════════════════════ */
body.hc-body .hc-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 220 !important;
  background: rgba(248, 251, 255, 0.92) !important;
  border-bottom: 1px solid var(--hc-line) !important;
  box-shadow: 0 10px 28px rgba(12, 74, 110, 0.06) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: env(safe-area-inset-top, 0);
}

body.hc-body .hc-top__inner {
  max-width: var(--hc-max) !important;
  margin: 0 auto !important;
  padding: 12px 16px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  gap: 12px 14px !important;
}

body.hc-body .hc-brand {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: var(--hc-deep) !important;
  min-width: 0;
}

body.hc-body .hc-brand__mark {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(145deg, #38bdf8, #0284c7 55%, #0c4a6e) !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.35) !important;
  flex-shrink: 0;
}

body.hc-body .hc-brand__text {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--hc-deep) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(42vw, 12em);
}

body.hc-body .hc-brand__text em,
body.hc-body .hc-brand__sub {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--hc-muted);
  letter-spacing: 0.08em;
}

body.hc-body .hc-search {
  display: flex !important;
  max-width: 360px;
  width: 100%;
  margin: 0 auto !important;
  border: 1px solid rgba(2, 132, 199, 0.22) !important;
  border-radius: 999px !important;
  overflow: hidden;
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(12, 74, 110, 0.05);
}

body.hc-body .hc-search input {
  border: 0 !important;
  background: transparent !important;
  padding: 10px 14px !important;
  min-width: 0;
  flex: 1;
  color: var(--hc-ink) !important;
  font-size: 0.9rem !important;
}

body.hc-body .hc-search input::placeholder {
  color: #94a3b8 !important;
}

body.hc-body .hc-btn,
body.hc-body .hc-btn--cta,
body.hc-body .hc-search .hc-btn {
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #38bdf8, #0284c7 60%, #0369a1) !important;
  color: #fff !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.28) !important;
  padding: 0 18px !important;
  min-height: 40px;
}

body.hc-body .hc-btn--outline {
  background: transparent !important;
  color: var(--hc-deep) !important;
  border: 1px solid rgba(2, 132, 199, 0.35) !important;
  box-shadow: none !important;
}

body.hc-body .hc-topnav {
  display: none !important; /* 导航下沉到 chips 行，避免双层杂乱 */
}

body.hc-body .hc-menu-btn {
  border-radius: 12px !important;
  border: 1px solid rgba(12, 74, 110, 0.14) !important;
  background: #fff !important;
  color: var(--hc-deep) !important;
  width: 40px;
  height: 40px;
}

/* 书签式分类条 */
body.hc-body .hc-chips {
  max-width: var(--hc-max) !important;
  margin: 0 auto !important;
  padding: 0 12px 10px !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 6px !important;
  overflow-x: auto !important;
  border-top: 1px solid rgba(12, 74, 110, 0.06) !important;
  scrollbar-width: none;
}
body.hc-body .hc-chips::-webkit-scrollbar { display: none; }

body.hc-body .hc-chip {
  flex: 0 0 auto;
  padding: 8px 14px !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  color: var(--hc-muted) !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  box-shadow: none !important;
}

body.hc-body .hc-chip:hover,
body.hc-body .hc-chip[aria-current="page"] {
  color: var(--hc-frost) !important;
  border-bottom-color: var(--hc-frost) !important;
  background: transparent !important;
}

body.hc-body .hc-chip--hot {
  color: var(--hc-deep) !important;
  background: rgba(2, 132, 199, 0.1) !important;
  border-radius: 999px !important;
  border-bottom: 0 !important;
  padding: 7px 14px !important;
}

body.hc-body .hc-chip--hot:hover {
  background: var(--hc-frost) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════
   中部主区 / 英雄
   ══════════════════════════════════════ */
body.hc-body .hc-main {
  max-width: var(--hc-max) !important;
  margin: 0 auto !important;
  padding: 22px 16px 56px !important;
}

body.hc-body .hc-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
  gap: 28px !important;
  align-items: center !important;
  margin: 0 0 36px !important;
  padding: 28px 24px !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(224, 242, 254, 0.75)),
    radial-gradient(500px 280px at 90% 10%, rgba(56, 189, 248, 0.25), transparent 60%) !important;
  border: 1px solid rgba(2, 132, 199, 0.14) !important;
  box-shadow: 0 22px 48px rgba(12, 74, 110, 0.08) !important;
}

body.hc-body .hc-hero__eyebrow {
  display: inline-flex !important;
  margin: 0 0 12px !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  background: rgba(2, 132, 199, 0.12) !important;
  color: var(--hc-frost) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
}

body.hc-body .hc-hero h1 {
  margin: 0 0 12px !important;
  color: var(--hc-deep) !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  line-height: 1.2 !important;
  max-width: 12em;
}

body.hc-body .hc-hero__lead {
  margin: 0 0 20px !important;
  color: var(--hc-muted) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  max-width: 34em;
}

body.hc-body .hc-hero__cta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-bottom: 0 !important;
}

body.hc-body .hc-hero__cards .hc-grid--hero {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.hc-body .hc-hero__cards .hc-card {
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(12, 74, 110, 0.14) !important;
  border: 0 !important;
  transform: none !important;
}
body.hc-body .hc-hero__cards .hc-card:nth-child(2) { transform: translateY(12px) !important; }
body.hc-body .hc-hero__cards .hc-card__body { display: none !important; }

/* 分区标题 */
body.hc-body .hc-sec-head,
body.hc-body .hc-block > .hc-sec-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 0 0 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--hc-line) !important;
}

body.hc-body .hc-sec-head h2 {
  margin: 0 !important;
  font-size: 1.28rem !important;
  color: var(--hc-deep) !important;
}

body.hc-body .hc-sec-head h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1em;
  margin-right: 10px;
  vertical-align: -0.12em;
  border-radius: 2px;
  background: linear-gradient(180deg, #38bdf8, #0284c7);
}

body.hc-body .hc-sec-head__dot { display: none !important; }

body.hc-body .hc-trend {
  margin: 0 0 36px !important;
  padding: 18px 16px 8px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(12, 74, 110, 0.08) !important;
}

body.hc-body .hc-trend__rail {
  display: flex !important;
  gap: 14px !important;
  overflow-x: auto !important;
  padding: 2px 2px 12px !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

body.hc-body .hc-trend__rail .hc-card {
  flex: 0 0 156px !important;
  scroll-snap-align: start;
}

/* ══════════════════════════════════════
   卡片：竖版霜边
   ══════════════════════════════════════ */
body.hc-body .hc-grid {
  display: grid !important;
  gap: 16px !important;
}

body.hc-body .hc-grid--four,
body.hc-body .hc-grid--cat {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.hc-body .hc-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.hc-body .hc-card {
  border-radius: 16px !important;
  border: 1px solid rgba(12, 74, 110, 0.08) !important;
  background: #fff !important;
  overflow: hidden !important;
  box-shadow: 0 12px 28px rgba(12, 74, 110, 0.06) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

body.hc-body .hc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(2, 132, 199, 0.14) !important;
}

body.hc-body .hc-card__cover {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  background: #dbeafe !important;
}

body.hc-body .hc-card__cover > img {
  aspect-ratio: 2 / 3 !important;
  object-fit: cover !important;
  width: 100% !important;
  display: block !important;
}

body.hc-body .hc-card__hot {
  position: absolute !important;
  left: 8px !important;
  top: 8px !important;
  border-radius: 6px !important;
  background: var(--hc-frost) !important;
  color: #fff !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  z-index: 2;
}

body.hc-body .hc-card__play {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(2, 132, 199, 0.92) !important;
  color: #fff !important;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 2;
}
body.hc-body .hc-card:hover .hc-card__play { opacity: 1; }

body.hc-body .hc-card__body {
  padding: 11px 12px 13px !important;
  border-top: 0 !important;
}

body.hc-body .hc-card__body h3,
body.hc-body .hc-card__body h3 a {
  margin: 0 0 6px !important;
  color: var(--hc-deep) !important;
  font-size: 0.92rem !important;
  line-height: 1.35 !important;
}

body.hc-body .hc-card__meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin: 0 !important;
  color: var(--hc-muted) !important;
  font-size: 0.72rem !important;
}

body.hc-body .hc-card__region {
  color: var(--hc-frost) !important;
  font-weight: 700 !important;
}

/* 分类页 */
body.hc-body .hc-pagehead {
  margin: 0 0 22px !important;
  padding: 28px 24px !important;
  border-radius: 20px !important;
  background: linear-gradient(125deg, #0c4a6e 0%, #0369a1 48%, #0284c7 100%) !important;
  color: #e0f2fe !important;
  border: 0 !important;
  box-shadow: 0 20px 40px rgba(12, 74, 110, 0.22) !important;
  text-align: left !important;
}

body.hc-body .hc-pagehead .hc-hero__eyebrow {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #bae6fd !important;
}

body.hc-body .hc-pagehead h1 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
}

body.hc-body .hc-pagehead p {
  margin: 0 !important;
  color: rgba(224, 242, 254, 0.88) !important;
  max-width: 36em;
}

body.hc-body .hc-cat-tiles {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body.hc-body .overview-card {
  border-radius: 16px !important;
  border: 1px solid rgba(12, 74, 110, 0.1) !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(12, 74, 110, 0.05) !important;
  padding: 18px 16px !important;
  border-left: 4px solid var(--hc-frost) !important;
  min-height: 120px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 12px !important;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

body.hc-body .overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.12) !important;
}

body.hc-body .overview-main strong {
  display: block;
  color: var(--hc-deep) !important;
  font-size: 1.08rem !important;
  margin-bottom: 6px;
}

body.hc-body .overview-main span,
body.hc-body .overview-links {
  color: var(--hc-muted) !important;
  font-size: 0.84rem !important;
}

body.hc-body .overview-links {
  border-top: 1px dashed rgba(2, 132, 199, 0.28) !important;
  padding-top: 10px !important;
  display: flex !important;
  justify-content: space-between !important;
  color: var(--hc-frost) !important;
  font-weight: 700 !important;
}

/* ══════════════════════════════════════
   播放页
   ══════════════════════════════════════ */
body.hc-body .hc-crumb {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 8px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--hc-muted) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
}
body.hc-body .hc-crumb a { color: var(--hc-frost) !important; font-weight: 700 !important; }

body.hc-body .hc-player-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.85fr) !important;
  gap: 0 !important;
  margin: 0 0 28px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  border: 1px solid rgba(12, 74, 110, 0.1) !important;
  background: #fff !important;
  box-shadow: 0 22px 48px rgba(12, 74, 110, 0.12) !important;
}

body.hc-body .hc-player {
  background: #020617 !important;
  min-height: 0;
}

body.hc-body .hc-player video,
body.hc-body #movie-player {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  max-height: min(68vh, 620px);
  object-fit: contain !important;
  background: #000 !important;
  display: block !important;
}

body.hc-body .hc-player-info {
  padding: 22px 20px !important;
  background: linear-gradient(180deg, #f0f9ff, #e0f2fe) !important;
  color: var(--hc-ink) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  border-left: 1px solid rgba(12, 74, 110, 0.08) !important;
}

body.hc-body .hc-player-info__head h1 {
  margin: 0 !important;
  color: var(--hc-deep) !important;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem) !important;
}

body.hc-body .hc-player-info__tag {
  display: inline-flex !important;
  margin-top: 8px;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  background: var(--hc-frost) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
}

body.hc-body .hc-facts {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

body.hc-body .hc-facts li {
  background: #fff !important;
  border: 1px solid rgba(12, 74, 110, 0.08) !important;
  border-radius: 12px !important;
  padding: 10px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

body.hc-body .hc-facts em {
  font-style: normal !important;
  color: var(--hc-muted) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
}

body.hc-body .hc-facts strong {
  color: var(--hc-deep) !important;
  font-size: 0.9rem !important;
}

body.hc-body .hc-player-info__desc {
  margin: 0 !important;
  color: var(--hc-muted) !important;
  line-height: 1.7 !important;
  font-size: 0.92rem !important;
}

body.hc-body .hc-synopsis {
  margin: 0 0 28px !important;
  padding: 20px 22px !important;
  border-radius: 16px !important;
  background: #fff !important;
  border: 1px solid rgba(12, 74, 110, 0.08) !important;
  border-left: 4px solid var(--hc-frost) !important;
  box-shadow: 0 10px 24px rgba(12, 74, 110, 0.04) !important;
}

body.hc-body .hc-synopsis h2 {
  margin: 0 0 10px !important;
  color: var(--hc-deep) !important;
  font-size: 1.15rem !important;
}

body.hc-body .hc-synopsis p {
  margin: 0 !important;
  color: var(--hc-ink) !important;
  line-height: 1.8 !important;
}

body.hc-body .hc-card--rail {
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 10px !important;
}

body.hc-body .hc-card--rail .hc-card__cover > img {
  aspect-ratio: 2 / 3 !important;
}

/* ══════════════════════════════════════
   尾部
   ══════════════════════════════════════ */
body.hc-body .hc-foot {
  margin-top: auto !important;
  background: #0c4a6e !important;
  color: #bae6fd !important;
  border-top: 0 !important;
}

body.hc-body .hc-foot__wave {
  height: 6px !important;
  background: linear-gradient(90deg, #0c4a6e, #0284c7, #38bdf8, #0284c7, #0c4a6e) !important;
  margin: 0 !important;
}

body.hc-body .hc-foot__body {
  max-width: var(--hc-max) !important;
  margin: 0 auto !important;
  padding: 36px 16px 24px !important;
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 28px !important;
}

body.hc-body .hc-foot__brand strong {
  display: block !important;
  color: #fff !important;
  font-size: 1.35rem !important;
  margin-bottom: 10px !important;
}

body.hc-body .hc-foot__brand p,
body.hc-body .hc-foot__about {
  color: rgba(186, 230, 253, 0.78) !important;
  line-height: 1.7 !important;
  margin: 0 0 8px !important;
}

body.hc-body .hc-foot__links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px 40px !important;
}

body.hc-body .hc-foot__label {
  display: block !important;
  color: #7dd3fc !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
}

body.hc-body .hc-foot__col a {
  display: block !important;
  color: #e0f2fe !important;
  font-weight: 600 !important;
  margin: 0 0 8px !important;
}

body.hc-body .hc-foot__col a:hover { color: #fff !important; }

body.hc-body .hc-foot__bar {
  max-width: var(--hc-max) !important;
  margin: 0 auto !important;
  padding: 14px 16px 28px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 10px !important;
  border-top: 1px solid rgba(186, 230, 253, 0.16) !important;
  color: rgba(186, 230, 253, 0.65) !important;
  font-size: 0.78rem !important;
}

body.hc-body .hc-foot__bar a { color: #7dd3fc !important; }

@media (max-width: 960px) {
  body.hc-body .hc-hero { grid-template-columns: 1fr !important; }
  body.hc-body .hc-hero__cards .hc-grid--hero { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  body.hc-body .hc-grid--four,
  body.hc-body .hc-grid--cat,
  body.hc-body .hc-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  body.hc-body .hc-player-wrap { grid-template-columns: 1fr !important; }
  body.hc-body .hc-player-info { border-left: 0 !important; border-top: 1px solid rgba(12, 74, 110, 0.08) !important; }
  body.hc-body .hc-foot__body { grid-template-columns: 1fr !important; }
}

@media (max-width: 720px) {
  body.hc-body .hc-top__inner {
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand menu"
      "search search" !important;
  }
  body.hc-body .hc-brand { grid-area: brand; }
  body.hc-body .hc-menu-btn { grid-area: menu; }
  body.hc-body .hc-search { grid-area: search; max-width: none; }
  body.hc-body .hc-topnav.open {
    display: flex !important;
    grid-column: 1 / -1;
    flex-direction: column !important;
    gap: 4px !important;
  }
  body.hc-body .hc-cat-tiles { grid-template-columns: 1fr !important; }
  body.hc-body .hc-hero__cards .hc-card:nth-child(2) { transform: none !important; }
  body.hc-body .hc-grid--four,
  body.hc-body .hc-grid--cat,
  body.hc-body .hc-grid--related,
  body.hc-body .hc-hero__cards .hc-grid--hero { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  body.hc-body .hc-facts { grid-template-columns: 1fr 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  body.hc-body .hc-card,
  body.hc-body .overview-card,
  body.hc-body .hc-btn { transition: none !important; }
  body.hc-body .hc-starfield span {
    animation: none !important;
    opacity: 0.35 !important;
  }
}

a, button, input, select, .hc-menu-btn, .hc-btn, .hc-chip {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
  input[type="search"], input[type="text"], select { font-size: 16px !important; }
}


/* pack13-opt-v1 · 触控与性能兜底 */
body.hc-body .hc-card__cover img,
body.hc-body .hc-player video{content-visibility:auto}
body.hc-body .hc-btn,
body.hc-body .hc-chip,
body.hc-body .hc-menu-btn,
body.hc-body .overview-card{touch-action:manipulation}
body.hc-body .hc-starfield{z-index:0}
body.hc-body .hc-top{z-index:220!important}
@media (prefers-reduced-motion:reduce){
  body.hc-body .hc-starfield span{animation:none!important;opacity:.3!important}
  body.hc-body .hc-card,
  body.hc-body .overview-card{animation:none!important;transition:none!important}
}
