:root {
  --bg: #0f0b14;
  --bg-soft: #140e1a;
  --surface: #1a1320;
  --surface-2: #201726;
  --surface-3: #271b30;
  --line: rgba(230, 57, 70, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #ece7f2;
  --muted: #9a90a6;
  --muted-2: #6f6580;
  --accent: #e63946;
  --accent-bright: #ff5a67;
  --accent-soft: rgba(230, 57, 70, 0.14);
  --accent-glow: rgba(230, 57, 70, 0.42);
  --gold: #f2b24c;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.68, 0.35, 1);
}

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

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

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(230, 57, 70, 0.12), transparent 60%),
    radial-gradient(1000px 500px at -10% 20%, rgba(120, 70, 160, 0.10), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: #3a2c46; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

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

/* ============ 导航栏 ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 11, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.scrolled { background: rgba(15, 11, 20, 0.96); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45); }
.nav-inner { display: flex; align-items: center; gap: 26px; height: 66px; }
.logo { display: flex; align-items: center; gap: 9px; font-size: 20px; font-weight: 700; white-space: nowrap; }
.logo .mark {
  display: grid; place-items: center; width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), #b91f2c);
  color: #fff; font-size: 12px; border-radius: 9px;
  box-shadow: 0 4px 14px var(--accent-glow);
}
.logo b { color: var(--accent); }
.nav-links { display: flex; gap: 4px; margin-left: 6px; }
.nav-links a {
  padding: 7px 14px; border-radius: 8px; font-size: 14.5px;
  color: var(--muted); transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--accent-bright); background: var(--accent-soft); font-weight: 600; }
.nav-search {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 8px 16px; min-width: 220px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.nav-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.nav-search .ic { font-size: 14px; opacity: 0.7; }
.nav-search input { background: transparent; border: none; outline: none; color: var(--text); font-size: 13.5px; width: 100%; }
.nav-search input::placeholder { color: var(--muted-2); }

/* ============ 详情头部 ============ */
.detail-hero {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  min-height: 520px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 11, 20, 0.55) 0%, rgba(15, 11, 20, 0.72) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(15, 11, 20, 0.88) 0%, rgba(15, 11, 20, 0.35) 60%, rgba(15, 11, 20, 0.15) 100%);
}
.hero-inner {
  position: relative; display: flex; align-items: flex-end; gap: 34px;
  padding-top: 66px; padding-bottom: 54px; min-height: 520px;
}
.poster {
  position: relative; flex: 0 0 auto; width: 238px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transform: translateZ(0);
}
.poster::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius); pointer-events: none;
}
.poster img { width: 238px; height: 317px; object-fit: cover; }
.poster .badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: linear-gradient(135deg, var(--accent), #b91f2c);
  color: #fff; font-size: 11px; font-weight: 600; padding: 3px 9px;
  border-radius: 6px; letter-spacing: 1px; box-shadow: 0 4px 12px var(--accent-glow);
}
.info { flex: 1 1 auto; min-width: 0; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a:hover { color: var(--accent-bright); }
.crumbs .sep { color: var(--muted-2); }
.info h1 { font-size: 40px; font-weight: 800; letter-spacing: 1px; line-height: 1.2; text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5); }
.en-title { color: var(--muted); font-size: 13.5px; letter-spacing: 1.5px; margin: 8px 0 16px; }
.meta-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.meta-tags span {
  padding: 4px 12px; border-radius: 7px; font-size: 12.5px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-soft); color: #d8d0e4;
}
.meta-tags .live { color: #7ef0a6; border-color: rgba(126, 240, 166, 0.3); background: rgba(126, 240, 166, 0.1); }
.meta-tags .hot { color: var(--accent-bright); border-color: rgba(230, 57, 70, 0.4); background: var(--accent-soft); }
.score-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 24px; }
.score { display: flex; align-items: center; gap: 12px; }
.score .val { font-size: 36px; font-weight: 800; color: var(--accent-bright); line-height: 1; text-shadow: 0 0 24px var(--accent-glow); }
.score .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.score .cnt { color: var(--muted); font-size: 12.5px; }
.stat { color: var(--muted); font-size: 13px; display: flex; flex-direction: column; gap: 2px; }
.stat b { color: var(--text); font-size: 17px; font-weight: 700; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s, color 0.18s;
}
.btn:active { transform: scale(0.97); }
.btn-play {
  background: linear-gradient(135deg, var(--accent), #c22333);
  color: #fff; box-shadow: 0 10px 28px var(--accent-glow);
}
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 14px 34px var(--accent-glow); }
.btn-ghost { background: rgba(255, 255, 255, 0.09); border: 1px solid var(--line-soft); color: var(--text); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.btn-share { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-soft); color: var(--text); }
.btn-share:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

/* ============ 快捷导航 ============ */
.quick-nav {
  position: sticky; top: 66px; z-index: 50;
  background: rgba(20, 14, 26, 0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.quick-nav-inner { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.quick-nav-inner::-webkit-scrollbar { display: none; }
.quick-nav-inner a {
  padding: 13px 16px; font-size: 14px; color: var(--muted); white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.quick-nav-inner a:hover { color: var(--text); }
.quick-nav-inner a.active { color: var(--accent-bright); border-bottom-color: var(--accent); font-weight: 600; }

/* ============ 通用区块 ============ */
.section { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 30px; }
.sec-title { display: flex; align-items: center; gap: 14px; }
.sec-title .bar {
  width: 4px; height: 34px; border-radius: 3px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 16px var(--accent-glow);
}
.sec-title h2 { font-size: 24px; font-weight: 800; letter-spacing: 1px; line-height: 1.2; }
.sec-title .sub { font-size: 12px; color: var(--muted-2); letter-spacing: 2px; text-transform: uppercase; }
.sec-more { color: var(--muted); font-size: 13.5px; transition: color 0.2s; }
.sec-more:hover { color: var(--accent-bright); }

/* ============ 剧情简介 ============ */
.synopsis-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }
.synopsis { color: #cfc6dc; }
.synopsis p { margin-bottom: 16px; }
.synopsis .lead {
  font-size: 17px; font-weight: 500; color: var(--text); line-height: 1.9;
  padding-left: 16px; border-left: 3px solid var(--accent);
}
.synopsis strong { color: var(--accent-bright); font-weight: 600; }
.info-card {
  position: sticky; top: 140px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.info-card h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.info-card dl { display: grid; grid-template-columns: 62px 1fr; row-gap: 10px; font-size: 13.5px; }
.info-card dt { color: var(--muted-2); }
.info-card dd { color: var(--text); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-list span {
  padding: 5px 11px; border-radius: 999px; font-size: 12px;
  color: var(--accent-bright); background: var(--accent-soft); border: 1px solid var(--line);
}

/* ============ 最新集数 ============ */
.episode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ep-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
}
.ep-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow); }
.ep-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ep-card:hover .ep-thumb img { transform: scale(1.07); }
.ep-thumb .dur {
  position: absolute; right: 8px; bottom: 8px; background: rgba(0, 0, 0, 0.75);
  color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 5px;
}
.ep-thumb .new {
  position: absolute; top: 8px; left: 8px; background: linear-gradient(135deg, var(--accent), #b91f2c);
  color: #fff; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 6px;
}
.ep-thumb .play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(15, 11, 20, 0.35); opacity: 0; transition: opacity 0.28s;
}
.ep-card:hover .play { opacity: 1; }
.ep-thumb .play i {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff; font-style: normal; font-size: 18px;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.ep-body { padding: 14px 16px 16px; }
.ep-num { color: var(--accent-bright); font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.ep-title { font-size: 16px; font-weight: 700; margin: 3px 0 8px; }
.ep-meta { display: flex; justify-content: space-between; color: var(--muted-2); font-size: 12px; }

/* ============ 剧集看点 ============ */
.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hl-card {
  position: relative; background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 26px 22px; overflow: hidden;
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
}
.hl-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.hl-card .idx {
  position: absolute; top: 12px; right: 18px; font-size: 44px; font-weight: 800;
  color: rgba(230, 57, 70, 0.1); line-height: 1;
}
.hl-card .icon { font-size: 28px; margin-bottom: 14px; }
.hl-card h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 10px; }
.hl-card p { color: var(--muted); font-size: 13.5px; }

/* ============ 角色介绍 ============ */
.cast-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cast-card {
  display: flex; gap: 20px; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 22px;
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
}
.cast-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.avatar-img {
  flex: 0 0 auto; width: 92px; height: 92px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.c-name { font-size: 17px; font-weight: 700; }
.c-role { color: var(--accent-bright); font-size: 12.5px; font-weight: 600; margin: 2px 0 10px; }
.c-desc { color: var(--muted); font-size: 13.5px; }

/* ============ 精彩剧照 ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.still-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--surface-2);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.still-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-sm); }
.still-card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.still-card:hover img { transform: scale(1.06); }
.still-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px;
  font-size: 13px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}

/* ============ 影评 ============ */
.review-layout { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: start; }
.review-score {
  position: sticky; top: 140px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-score .big { font-size: 52px; font-weight: 800; color: var(--accent-bright); line-height: 1; text-shadow: 0 0 28px var(--accent-glow); }
.review-score .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin: 8px 0 6px; }
.review-score .cnt { color: var(--muted); font-size: 12.5px; margin-bottom: 18px; }
.rate-row { display: grid; grid-template-columns: 30px 1fr 38px; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 12.5px; }
.rate-row .lab { color: var(--muted); }
.rate-row .track { height: 6px; background: var(--surface-3); border-radius: 4px; overflow: hidden; }
.rate-row .fill { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); border-radius: 4px; }
.rate-row .pct { color: var(--muted-2); text-align: right; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.review-filter button {
  padding: 7px 16px; border-radius: 999px; font-size: 13px;
  background: var(--surface); border: 1px solid var(--line-soft); color: var(--muted);
  transition: all 0.2s;
}
.review-filter button:hover { color: var(--text); border-color: var(--muted-2); }
.review-filter button.active { color: #fff; background: var(--accent); border-color: var(--accent); font-weight: 600; }
.review-item {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 20px 22px; transition: border-color 0.25s;
}
.review-item:hover { border-color: var(--line); }
.review-item.hidden { display: none; }
.rv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rv-avatar {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface-3));
  color: var(--accent-bright); font-weight: 700; font-size: 16px; flex: 0 0 auto;
}
.rv-user { font-weight: 600; font-size: 14.5px; }
.rv-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.rv-meta { margin-left: auto; color: var(--muted-2); font-size: 12px; }
.rv-tag {
  display: inline-block; color: #7ef0a6; font-size: 11.5px; font-weight: 600;
  background: rgba(126, 240, 166, 0.1); border: 1px solid rgba(126, 240, 166, 0.3);
  padding: 1px 8px; border-radius: 5px; margin-bottom: 8px;
}
.rv-text { color: #cfc6dc; font-size: 14px; }
.rv-action { display: flex; gap: 16px; color: var(--muted-2); font-size: 12.5px; margin-top: 12px; }
.rv-action span:hover { color: var(--accent-bright); }

/* ============ 页脚 ============ */
.footer { background: #0b0710; border-top: 1px solid var(--line-soft); padding: 52px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line-soft); }
.footer-top p { color: var(--muted); font-size: 13.5px; max-width: 420px; }
.footer-top h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a { color: var(--muted); font-size: 13.5px; transition: color 0.2s; }
.f-links a:hover { color: var(--accent-bright); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px;
}
.footer-bottom p { color: var(--muted-2); font-size: 12.5px; line-height: 1.8; }
.footer-bottom .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-bottom .tags span {
  padding: 4px 11px; border-radius: 999px; font-size: 12px;
  background: var(--surface); border: 1px solid var(--line-soft); color: var(--muted);
}

/* ============ 分享弹窗 ============ */
.modal-mask {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(5, 3, 8, 0.72); backdrop-filter: blur(6px);
}
.modal-mask.show { display: flex; animation: fadeIn 0.25s var(--ease); }
.modal {
  position: relative; width: 100%; max-width: 440px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px; box-shadow: var(--shadow);
  animation: popIn 0.3s var(--ease);
}
.modal-close {
  position: absolute; top: 14px; right: 16px; width: 32px; height: 32px;
  border-radius: 50%; display: grid; place-items: center;
  color: var(--muted); font-size: 14px; transition: all 0.2s;
}
.modal-close:hover { background: var(--surface-3); color: var(--text); }
.modal h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.modal-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; }
.share-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.share-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 6px;
  border-radius: 12px; border: 1px solid var(--line-soft); cursor: pointer;
  font-size: 12.5px; color: var(--muted); transition: all 0.2s;
}
.share-item:hover { border-color: var(--accent); color: var(--text); transform: translateY(-3px); }
.share-item .ico { font-size: 24px; }
.copy-row { display: flex; gap: 10px; }
.copy-row input {
  flex: 1; background: var(--surface-2); border: 1px solid var(--line-soft);
  border-radius: 9px; padding: 10px 14px; color: var(--muted); font-size: 13px; outline: none;
}
.copy-row button {
  padding: 0 20px; border-radius: 9px; background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 600; transition: background 0.2s;
}
.copy-row button:hover { background: #c22333; }

/* ============ 提示 & 回顶 ============ */
.toast {
  position: fixed; left: 50%; bottom: 40px; z-index: 120; transform: translateX(-50%) translateY(20px);
  background: rgba(20, 14, 26, 0.96); color: var(--text); border: 1px solid var(--line);
  padding: 11px 22px; border-radius: 999px; font-size: 13.5px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; box-shadow: var(--shadow-sm);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.back-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b91f2c); color: #fff; font-size: 18px;
  box-shadow: 0 8px 24px var(--accent-glow); opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ============ 动画 ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: scale(0.92) translateY(12px); } to { opacity: 1; transform: none; } }

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .synopsis-grid { grid-template-columns: 1fr; }
  .info-card, .review-score { position: static; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .review-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .episode-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-search { display: none; }
  .nav-links { display: none; }
  .hero-inner { flex-direction: column; align-items: center; text-align: center; padding-top: 40px; padding-bottom: 44px; }
  .poster { width: 170px; }
  .poster img { width: 170px; height: 226px; }
  .info h1 { font-size: 30px; }
  .score-row { justify-content: center; }
  .btn-row { justify-content: center; }
  .crumbs { justify-content: center; }
  .section { padding: 46px 0; }
  .cast-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .episode-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .share-list { grid-template-columns: repeat(2, 1fr); }
}
