/* sz-theme — 暮蓝瓷笺：柔暮蓝底 + 青瓷强调，标题下置，比松烟朱印更易读 */

:root {
  --sz-bg: #101826;
  --sz-bg-soft: #162032;
  --sz-surface: #1b2740;
  --sz-surface-2: #22314c;
  --sz-ink: #eef3fa;
  --sz-ink-muted: #a8b6cb;
  --sz-ink-soft: #73839a;
  --sz-primary: #3d9b8c;
  --sz-primary-dark: #2d7a6e;
  --sz-accent: #e2b657;
  --sz-border: #2c3c58;
  --sz-border-input: #3b4d6b;
  --sz-poster-bg: #1a2438;
  --sz-radius: 10px;
  --sz-radius-lg: 16px;
  --sz-shadow: 0 8px 24px rgba(8, 12, 22, 0.28);
  --sz-shadow-lg: 0 16px 36px rgba(8, 12, 22, 0.38);
  --sz-control-h: 36px;
  --sz-sticky-top: 110px;
}

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

img, video { max-width: 100%; height: auto; display: block; }

body.body-tpl-sz {
  font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(900px 420px at 0% -8%, rgba(61, 155, 140, 0.14), transparent 52%),
    radial-gradient(720px 380px at 100% 0%, rgba(226, 182, 87, 0.07), transparent 48%),
    var(--sz-bg);
  color: var(--sz-ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(61, 155, 140, 0.18);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

body.body-tpl-sz a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

main { width: 100%; }

.app-shell.tpl-sz {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--sz-bg);
  color: var(--sz-ink);
}
.app-shell.tpl-sz .site-outlet { flex: 1; width: 100%; }

/* ═══ 头部：双行，品牌与控件同高，导航单独成行 ═══ */
.sz-header {
  background: rgba(16, 24, 38, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  border-bottom: 1px solid var(--sz-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0);
}

.sz-header::after { display: none; }

.sz-nav-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "logo actions"
    "nav nav";
  align-items: center;
  padding: 12px 0 0;
  column-gap: 16px;
  row-gap: 0;
}

.sz-logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: var(--sz-control-h);
  padding-bottom: 12px;
}

.sz-logo__icon {
  flex-shrink: 0;
  background: linear-gradient(160deg, #4bb5a4, var(--sz-primary));
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4fffc;
  font-size: 15px;
  line-height: 1;
}

.sz-ico {
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}

.sz-logo__icon .sz-ico { width: 15px; height: 15px; }

.sz-logo__text {
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--sz-ink);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.sz-nav-links {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 6px 0;
  border-top: 1px solid var(--sz-border);
}

.sz-nav-links li { display: flex; }

.sz-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: var(--sz-ink-muted);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.sz-nav-link:hover {
  color: var(--sz-ink);
  background: rgba(61, 155, 140, 0.1);
}

.sz-nav-link.active {
  color: #f4fffc;
  background: var(--sz-primary);
}

.sz-nav-actions {
  grid-area: actions;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  min-height: var(--sz-control-h);
  padding-bottom: 12px;
}

.sz-nav-actions .sz-ico {
  font-size: 14px;
  width: 14px;
  height: 14px;
}

.sz-nav-actions > a:not(.sz-btn-sm) {
  width: var(--sz-control-h);
  height: var(--sz-control-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--sz-border-input);
  background: #121b2b;
  color: var(--sz-ink-muted);
}

.sz-nav-actions > a:not(.sz-btn-sm):hover {
  color: var(--sz-primary);
  border-color: var(--sz-primary);
}

.sz-search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: var(--sz-control-h);
  padding: 0 14px;
  border: 1px solid var(--sz-border-input);
  border-radius: 999px;
  background: #121b2b;
}

.sz-search-form input {
  border: none;
  background: transparent;
  font-size: 16px;
  line-height: 1.2;
  width: min(220px, 42vw);
  height: 100%;
  outline: none;
  color: var(--sz-ink);
  -webkit-appearance: none;
  appearance: none;
}

.sz-search-form--page {
  max-width: 480px;
  margin-top: 1rem;
}

.sz-search-form--page input { width: 100%; }

.sz-search-form input::placeholder { color: var(--sz-ink-soft); }

.sz-btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--sz-control-h);
  background: var(--sz-primary);
  color: #f4fffc;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.sz-btn-sm:hover { background: var(--sz-primary-dark); }

.sz-menu-toggle {
  display: none;
  width: var(--sz-control-h);
  height: var(--sz-control-h);
  font-size: 16px;
  cursor: pointer;
  border: 1px solid var(--sz-border);
  background: var(--sz-surface);
  color: var(--sz-ink-muted);
  padding: 0;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.sz-menu-toggle .sz-ico { width: 16px; height: 16px; }

.sz-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  border: none;
  background: rgba(8, 12, 22, 0.58);
  cursor: pointer;
}

.sz-drawer {
  display: none;
  padding: 0.9rem 0 1.3rem;
  background: #121b2b;
  border-top: 1px solid var(--sz-border);
}

.sz-drawer.is-open { display: block; }

.sz-drawer .sz-nav-links {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-top: 0;
}

.sz-drawer .sz-nav-link {
  display: flex;
  height: auto;
  padding: 0.75rem 0;
  border-radius: 0;
  justify-content: flex-start;
  border-bottom: 1px solid var(--sz-border);
}

.sz-drawer .sz-nav-link.active {
  background: transparent;
  color: var(--sz-primary);
}

.sz-drawer .sz-search-form {
  margin-top: 0.9rem;
  width: 100%;
}

.sz-drawer .sz-search-form input { flex: 1; width: auto; }

body.body-tpl-sz.sz-nav-open { overflow: hidden; }

/* ═══ 中部：通栏轮播 + 四列推荐条 ═══ */
.sz-hero-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 0;
}

.sz-hero-carousel {
  flex: none;
  width: 100%;
  min-width: 0;
  border-radius: var(--sz-radius-lg);
  overflow: hidden;
  background: #0c121d;
  box-shadow: var(--sz-shadow-lg);
  position: relative;
  border: 1px solid var(--sz-border);
}

.sz-hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sz-hero-track::-webkit-scrollbar { display: none; }

.sz-hero-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 100%;
}

.sz-hero-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.sz-hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(61, 155, 140, 0.35);
  background: rgba(16, 24, 38, 0.62);
  color: #f4fffc;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  cursor: pointer;
}

.sz-hero-next { right: 12px; }
.sz-hero-prev { left: 12px; }

.sz-hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.sz-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #eef3fa;
  opacity: 0.35;
  cursor: pointer;
}

.sz-hero-dot.is-on {
  background: var(--sz-primary);
  opacity: 1;
  width: 22px;
}

.sz-home-intro {
  margin: 1.6rem 0 0.2rem;
}

.sz-home-intro h1 {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: var(--sz-ink);
  font-weight: 800;
  line-height: 1.35;
}

.sz-home-intro p {
  margin-top: 0.45rem;
  color: var(--sz-ink-muted);
  font-size: 0.92rem;
  max-width: 52rem;
}

.sz-fixed-cards {
  flex: none;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sz-fixed-item {
  background: var(--sz-surface);
  border-radius: var(--sz-radius);
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.2s, transform 0.2s;
  border: 1px solid var(--sz-border);
  color: inherit;
}

.sz-fixed-item:hover {
  transform: translateY(-2px);
  border-color: var(--sz-primary);
}

.sz-fixed-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sz-fixed-item p {
  position: static;
  height: 42px;
  padding: 0 12px;
  font-weight: 600;
  font-size: 13px;
  line-height: 42px;
  text-align: left;
  color: var(--sz-ink);
  background: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══ 分类区块 ═══ */
.sz-category-section { margin: 32px 0; }

.sz-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  border-left: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--sz-border);
}

.sz-section-header h2 {
  display: flex;
  align-items: center;
  min-height: 32px;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--sz-ink);
}

.sz-section-header h2::after { display: none; }

.sz-section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--sz-primary);
  padding: 0 14px;
  border: 1px solid var(--sz-border);
  border-radius: 999px;
  background: var(--sz-surface);
  white-space: nowrap;
}

.sz-section-more:hover {
  border-color: var(--sz-primary);
  color: var(--sz-accent);
}

.sz-movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}

.sz-movie-card {
  position: relative;
  background: transparent;
  border-radius: var(--sz-radius);
  overflow: visible;
  box-shadow: none;
  transition: transform 0.2s;
  border: 0;
}

.sz-movie-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: transparent;
}

.sz-movie-poster {
  display: block;
  aspect-ratio: 2 / 3;
  background: var(--sz-poster-bg);
  position: relative;
  overflow: hidden;
  border-radius: var(--sz-radius);
  border: 1px solid var(--sz-border);
}

.sz-movie-card:hover .sz-movie-poster {
  border-color: var(--sz-primary);
  box-shadow: var(--sz-shadow);
}

.sz-movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.sz-movie-card:hover .sz-movie-poster img { transform: scale(1.04); }

.sz-movie-poster::after { display: none; }

.sz-movie-score {
  position: absolute;
  top: 8px;
  right: 8px;
  left: auto;
  bottom: auto;
  width: auto;
  height: 22px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  color: #102018;
  background: var(--sz-accent);
  border-radius: 6px;
  box-shadow: none;
  z-index: 2;
}

.sz-movie-info {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 10px 2px 0;
  z-index: auto;
  background: none;
}

.sz-movie-title,
.sz-movie-title:link,
.sz-movie-title:visited {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--sz-ink);
  display: block;
}

.sz-movie-title:hover,
.sz-movie-title:focus-visible { color: var(--sz-primary); }

.sz-movie-meta {
  margin-top: 0.25rem;
  font-size: 0.74rem;
  color: var(--sz-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sz-movie-meta a:link,
.sz-movie-meta a:visited { color: var(--sz-primary); }

.sz-movie-meta a:hover { color: var(--sz-accent); }

/* 排行行 */
.sz-rank {
  display: grid;
  grid-template-columns: 22px 44px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sz-border);
  color: inherit;
}

.sz-rank:last-child { border-bottom: none; }

.sz-rank__num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--sz-primary);
  text-align: center;
}

.sz-rank__thumb {
  width: 44px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sz-border);
}

.sz-rank__thumb img { width: 100%; height: 100%; object-fit: cover; }

.sz-rank__info h3 {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sz-rank__info p {
  font-size: 0.68rem;
  color: var(--sz-ink-soft);
  margin-top: 0.12rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══ 分类页 ═══ */
.sz-page-head {
  background:
    linear-gradient(90deg, rgba(61, 155, 140, 0.14), transparent 50%),
    var(--sz-surface);
  border-bottom: 1px solid var(--sz-border);
  padding: 1.6rem 0 1.25rem;
  margin-bottom: 1.25rem;
}

.sz-page-head h1 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.sz-page-head h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--sz-primary);
}

.sz-page-head p {
  color: var(--sz-ink-muted);
  font-size: 0.9rem;
  max-width: 46rem;
}

.sz-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  margin-top: 0.85rem;
  color: var(--sz-ink-soft);
}

.sz-breadcrumb a { color: var(--sz-primary); font-weight: 600; }
.sz-breadcrumb em { font-style: normal; }
.sz-breadcrumb strong { color: var(--sz-ink); font-weight: 600; }

.sz-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: flex-end;
  padding: 1rem 1.15rem;
  background: var(--sz-surface);
  border: 1px solid var(--sz-border);
  border-left: 3px solid var(--sz-primary);
  border-radius: var(--sz-radius);
  margin-bottom: 1.35rem;
  box-shadow: none;
}

.sz-filter-field { flex: 1; min-width: 140px; }

.sz-filter-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--sz-primary);
  margin-bottom: 0.32rem;
}

.sz-filter-input,
.sz-filter-select {
  width: 100%;
  height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--sz-border-input);
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.2;
  background: #121b2b;
  color: var(--sz-ink);
}

.sz-cat-count {
  display: flex;
  align-items: center;
  min-height: 38px;
  font-size: 0.8rem;
  color: var(--sz-ink-muted);
  white-space: nowrap;
}

.sz-cat-count strong { color: var(--sz-accent); }

/* ═══ 播放页 ═══ */
.sz-play-head {
  background: var(--sz-surface);
  border-bottom: 1px solid var(--sz-border);
  padding: 1.4rem 0;
}

.sz-play-head__inner {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.sz-play-head__poster img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 2/3;
  object-fit: cover;
  border: 1px solid var(--sz-border);
}

.sz-play-head__copy { min-width: 0; }

.sz-play-head__copy h1 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0.5rem 0 0.4rem;
}

.sz-play-head__copy p {
  color: var(--sz-ink-muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sz-tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.7rem 0;
}

.sz-tag-pills span {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  background: rgba(61, 155, 140, 0.1);
  border: 1px solid var(--sz-border);
  border-radius: 999px;
  color: var(--sz-ink-muted);
}

.sz-play-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.6rem;
}

.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.sz-btn--primary {
  background: var(--sz-primary);
  color: #f4fffc;
}

.sz-btn--primary:hover { background: var(--sz-primary-dark); }

.sz-btn--ghost {
  background: transparent;
  color: var(--sz-ink);
  border: 1px solid var(--sz-border-input);
}

.sz-play-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: 1.4rem;
  padding-top: 1.6rem;
  padding-bottom: 3rem;
  align-items: start;
}

.sz-play-main { min-width: 0; }

.sz-player {
  border-radius: var(--sz-radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--sz-shadow-lg);
  border: 1px solid var(--sz-border);
}

.sz-player video { width: 100%; display: block; }

.sz-panel {
  background: var(--sz-surface);
  border: 1px solid var(--sz-border);
  border-left: 3px solid var(--sz-primary);
  border-radius: var(--sz-radius);
  padding: 1.2rem 1.25rem;
  margin-top: 1rem;
  box-shadow: none;
}

.sz-panel h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sz-panel p {
  font-size: 0.88rem;
  color: var(--sz-ink-muted);
  line-height: 1.7;
}

.sz-play-side {
  background: var(--sz-surface);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 1.05rem;
  box-shadow: none;
  position: sticky;
  top: var(--sz-sticky-top);
}

.sz-play-side h2 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sz-border);
}

.sz-side-more {
  display: block;
  margin-top: 0.8rem;
  text-align: center;
  padding: 0.52rem;
  border-radius: 999px;
  background: var(--sz-primary);
  color: #f4fffc;
  font-size: 0.8rem;
  font-weight: 700;
}

.sz-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  font-size: 0.85rem;
}

.sz-info-list div { display: grid; gap: 0.1rem; }

.sz-info-list dt {
  font-size: 0.7rem;
  color: var(--sz-primary);
  font-weight: 700;
}

.sz-info-list dd { color: var(--sz-ink); font-weight: 600; }

/* ═══ 页脚 ═══ */
.sz-footer {
  background: #0c121d;
  border-top: 2px solid var(--sz-primary);
  padding: 40px 0 calc(24px + env(safe-area-inset-bottom, 0));
  margin-top: 24px;
}

.sz-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: start;
  gap: 2rem 1.6rem;
}

.sz-footer__brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--sz-ink);
}

.sz-footer__brand p {
  font-size: 0.84rem;
  color: var(--sz-ink-muted);
  line-height: 1.7;
}

.sz-footer__col h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: var(--sz-accent);
}

.sz-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}

.sz-footer__links a {
  font-size: 0.84rem;
  color: var(--sz-ink-muted);
}

.sz-footer__links a:hover { color: var(--sz-primary); }

.sz-footer__note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
}

.sz-footer__bottom {
  text-align: left;
  color: var(--sz-ink-soft);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sz-border);
}

/* ═══ 通用 ═══ */
.sz-page-sheet {
  background: var(--sz-surface);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 1.5rem;
  box-shadow: none;
}

.sz-empty,
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--sz-ink-muted);
  background: var(--sz-surface);
  border-radius: var(--sz-radius);
  border: 1px dashed var(--sz-border-input);
}

.sz-text-link { color: var(--sz-primary); font-weight: 600; }

/* ═══ 响应式 ═══ */
@media (max-width: 1000px) {
  .sz-movie-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sz-footer__inner { grid-template-columns: 1fr 1fr; }
  .sz-hero-slide img { height: 280px; }
}

@media (max-width: 800px) {
  :root { --sz-sticky-top: 61px; }

  .sz-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 1rem;
  }

  .sz-logo,
  .sz-nav-actions { padding-bottom: 0; }

  .sz-nav-links { display: none; }
  .sz-search-form { display: none; }
  .sz-nav-actions > a:not(.sz-btn-sm) { display: none; }
  .sz-menu-toggle { display: inline-flex; }

  .sz-drawer.is-open {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(61px + env(safe-area-inset-top, 0));
    bottom: 0;
    z-index: 101;
    overflow-y: auto;
    padding-bottom: 2rem;
  }

  .sz-drawer.is-open .sz-nav-links { display: flex; }
}

@media (max-width: 768px) {
  .sz-hero-slide img { height: 200px; }
  .sz-hero-wrapper { margin-top: 16px; }
  .sz-fixed-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sz-play-layout { grid-template-columns: 1fr; }
  .sz-play-side { position: static; }
}

@media (max-width: 700px) {
  .sz-movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
}

@media (max-width: 640px) {
  .sz-play-head__inner { grid-template-columns: 88px 1fr; }
  .sz-info-list { grid-template-columns: 1fr; }
  .sz-footer__inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .sz-filter-bar { flex-direction: column; align-items: stretch; }
  .sz-btn-sm { display: none; }
  .sz-logo__text { max-width: min(240px, 62vw); }
}

@media (max-width: 480px) {
  .sz-movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sz-fixed-cards { grid-template-columns: 1fr 1fr; }
}
