:root {
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-soft: #f8fafc;
  --color-line: #e5e7eb;
  --color-dark: #0f172a;
  --color-amber: #d97706;
  --color-amber-light: #f59e0b;
  --color-orange: #ea580c;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 14px 34px rgba(15, 23, 42, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.sub-page .site-header,
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

.site-header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-amber-light), var(--color-orange));
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.36);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-weight: 900;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.sub-page .brand-title,
.site-header.is-scrolled .brand-title,
.sub-page .nav-link,
.site-header.is-scrolled .nav-link {
  color: #111827;
}

.sub-page .brand-subtitle,
.site-header.is-scrolled .brand-subtitle {
  color: #6b7280;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: #ffffff;
  padding: 10px 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(245, 158, 11, 0.14);
  color: var(--color-amber-light);
  transform: translateY(-1px);
}

.top-search {
  display: flex;
  align-items: center;
  width: 230px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sub-page .top-search,
.site-header.is-scrolled .top-search {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.top-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 8px 10px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.sub-page .top-search input,
.site-header.is-scrolled .top-search input {
  color: #111827;
}

.sub-page .top-search input::placeholder,
.site-header.is-scrolled .top-search input::placeholder {
  color: #9ca3af;
}

.top-search button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--color-amber-light), var(--color-orange));
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
  border-radius: 2px;
}

.sub-page .nav-toggle span,
.site-header.is-scrolled .nav-toggle span {
  background: #111827;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  background: #111827;
}

.hero-background,
.hero-overlay,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 6s ease;
  filter: saturate(1.02) contrast(1.02);
}

.hero-bg.is-active {
  opacity: 0.28;
  transform: scale(1);
}

.hero-overlay {
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.42), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(88, 28, 5, 0.84) 55%, rgba(15, 23, 42, 0.94));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 500px);
  gap: 50px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-amber-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  max-width: 760px;
}

.hero-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-amber-light), var(--color-orange));
  box-shadow: 0 16px 34px rgba(234, 88, 12, 0.28);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
}

.btn-ghost.light {
  color: #111827;
  background: #ffffff;
  border-color: #e5e7eb;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 18px;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.hero-carousel {
  position: relative;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-poster {
  min-height: 330px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(15, 23, 42, 0.84));
  overflow: hidden;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-slide:hover .hero-poster img {
  transform: scale(1.05);
}

.hero-slide-copy {
  padding: 30px;
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(18px);
}

.hero-slide-copy h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.hero-slide-desc {
  color: rgba(255, 255, 255, 0.74);
  min-height: 54px;
}

.hero-tags,
.movie-meta,
.tag-row,
.meta-pills,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tags span,
.meta-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.inline-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--color-amber-light);
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  left: 30px;
  bottom: -34px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.36);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--color-amber-light);
}

.section-block {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
}

.category-grid,
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-tile,
.category-overview-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 26px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f2937, #111827);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.category-tile span,
.category-overview-card h2 {
  display: block;
  font-size: 24px;
  font-weight: 900;
}

.category-tile p,
.category-overview-card p {
  color: rgba(255, 255, 255, 0.72);
}

.accent-orange { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.accent-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.accent-blue { background: linear-gradient(135deg, #2563eb, #0891b2); }
.accent-green { background: linear-gradient(135deg, #16a34a, #059669); }
.accent-red { background: linear-gradient(135deg, #dc2626, #ea580c); }
.accent-pink { background: linear-gradient(135deg, #e11d48, #db2777); }
.accent-slate { background: linear-gradient(135deg, #334155, #020617); }
.accent-cyan { background: linear-gradient(135deg, #0891b2, #0d9488); }

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #111827);
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), transparent 60%);
}

.play-mark {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-amber-light), var(--color-orange));
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.32);
}

.rank-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  min-width: 44px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(12px);
}

.movie-card-body {
  padding: 18px;
}

.movie-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.movie-title a:hover {
  color: var(--color-amber);
}

.movie-desc {
  min-height: 52px;
  margin: 10px 0 14px;
  color: var(--color-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
}

.movie-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #d1d5db;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  color: #92400e;
  background: #fef3c7;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-card .movie-card-body {
  padding: 15px;
}

.compact-card .movie-title {
  font-size: 17px;
}

.compact-card .movie-desc {
  min-height: 44px;
  font-size: 14px;
}

.two-column-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(180deg, #111827, #020617);
  box-shadow: var(--shadow-soft);
}

.rank-panel h2 {
  margin: 0;
  font-size: 28px;
}

.rank-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.rank-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: rgba(245, 158, 11, 0.18);
}

.rank-row span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-amber-light), var(--color-orange));
  font-weight: 900;
}

.rank-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row em {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 13px;
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #92400e);
}

.slim-hero {
  padding: 78px 0;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1,
.page-hero p:not(.eyebrow) {
  color: #ffffff;
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
}

.filter-grid label {
  display: grid;
  gap: 7px;
  color: #374151;
  font-weight: 800;
  font-size: 14px;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid #e5e7eb;
  outline: 0;
  border-radius: 14px;
  padding: 12px 14px;
  background: #f9fafb;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--color-amber-light);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.empty-state {
  display: none;
  margin-top: 28px;
  padding: 34px;
  text-align: center;
  border-radius: 20px;
  color: var(--color-muted);
  background: #f9fafb;
}

.empty-state.is-visible {
  display: block;
}

.category-overview-main {
  display: block;
}

.category-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.sample-links {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.sample-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.sample-links a:hover {
  color: #ffffff;
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--color-amber);
  font-weight: 800;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #d1d5db;
}

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 30px;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.32), transparent 34%),
    linear-gradient(135deg, #111827, #431407);
  box-shadow: var(--shadow-soft);
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
  background: linear-gradient(135deg, #fef3c7, #111827);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-info h1 {
  color: #ffffff;
}

.detail-one-line {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.meta-pills span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.player-section,
.detail-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 48px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.52), rgba(0, 0, 0, 0.26));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-amber-light), var(--color-orange));
  box-shadow: 0 22px 54px rgba(234, 88, 12, 0.42);
  font-size: 34px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.detail-content,
.related-panel {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.detail-content {
  padding: 34px;
}

.detail-content h2,
.related-panel h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.detail-content p {
  color: #374151;
  font-size: 18px;
}

.detail-tags span {
  color: #92400e;
  background: #fef3c7;
}

.related-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.related-list {
  display: grid;
  gap: 18px;
}

.related-list .movie-card {
  box-shadow: none;
  border: 1px solid var(--color-line);
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(180deg, #111827, #020617);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.brand-footer .brand-title {
  color: #ffffff;
}

.brand-footer .brand-subtitle,
.footer-brand p {
  color: rgba(255, 255, 255, 0.64);
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links div {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-links a:hover {
  color: var(--color-amber-light);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-nav,
  .top-search {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open .nav-link {
    color: #111827;
  }

  .hero-content,
  .detail-hero,
  .detail-grid,
  .two-column-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 520px;
  }

  .rank-panel,
  .related-panel {
    position: static;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    height: 68px;
    width: min(100% - 24px, 1180px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-title {
    font-size: 19px;
  }

  .hero-section {
    min-height: auto;
    padding: 104px 0 56px;
  }

  .hero-content,
  .section-block,
  .page-hero-inner,
  .breadcrumb,
  .detail-hero,
  .player-section,
  .detail-grid,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-carousel {
    min-height: 500px;
  }

  .hero-slide-copy {
    padding: 22px;
  }

  .hero-slide-copy h2 {
    font-size: 25px;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .compact-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 52px 0;
  }

  .section-soft {
    padding-left: 12px;
    padding-right: 12px;
  }

  .detail-hero {
    padding: 18px;
    border-radius: 24px;
  }

  .detail-poster {
    min-height: 320px;
  }

  .detail-content,
  .related-panel {
    padding: 22px;
  }

  .video-shell {
    border-radius: 20px;
  }

  .play-circle {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}
