:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --panel: #ffffff;
  --text: #1b2027;
  --muted: #697481;
  --line: #dce1e6;
  --accent: #c73e1d;
  --accent-2: #147d73;
  --shell: 1220px;
}
* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; background: #e3e7ea; color: transparent; }
.shell { width: min(var(--shell), calc(100% - 40px)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: #111820; color: #f8fafb; }
.header-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { color: #ffc857; font-size: 21px; font-weight: 800; }
.main-nav { display: flex; gap: 24px; color: #bdc6cf; font-size: 14px; }
.main-nav a:hover { color: #fff; }
.page-main { padding-top: 28px; padding-bottom: 72px; }
.breadcrumb { display: flex; gap: 10px; color: var(--muted); font-size: 12px; }
.breadcrumb a:hover { color: var(--accent); }
.page-heading { display: grid; grid-template-columns: 1fr minmax(260px, 520px); align-items: end; gap: 40px; padding: 42px 0 30px; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 8px; color: var(--accent-2); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.page-heading h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); }
.page-heading > * { min-width: 0; }
.page-heading > p { margin: 0; overflow-wrap: anywhere; color: var(--muted); line-height: 1.8; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; padding: 24px 0 30px; }
.quick-links a { padding: 8px 14px; border: 1px solid var(--line); background: var(--panel); color: #46515d; font-size: 13px; }
.quick-links a:hover { border-color: var(--accent); color: var(--accent); }
.movie-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px 18px; }
.movie-card { min-width: 0; background: var(--panel); box-shadow: 0 4px 18px rgba(17,24,32,.06); transition: transform .2s ease, box-shadow .2s ease; }
.movie-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(17,24,32,.12); }
.movie-card img { aspect-ratio: 2 / 3; object-fit: cover; }
.movie-card div { padding: 12px 12px 14px; }
.movie-card strong { display: block; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.movie-card p { display: -webkit-box; min-height: 36px; margin: 7px 0 0; overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 12px; }
.footer-inner .brand { color: var(--accent); }
@media (max-width: 1050px) { .movie-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 720px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .header-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 14px 0; }
  .main-nav { gap: 17px; }
  .page-heading { grid-template-columns: 1fr; gap: 18px; padding-top: 32px; }
  .movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 24px 0; }
}
