:root {
  --rose: #f43f5e;
  --rose-dark: #be123c;
  --orange: #f97316;
  --amber: #f59e0b;
  --pink: #ec4899;
  --violet: #8b5cf6;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --slate: #334155;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: #f1f5f9;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 26%, #fff1f2 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--rose);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 12px 24px rgba(244, 63, 94, 0.28);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: rgba(244, 63, 94, 0.18);
  filter: blur(12px);
}

.brand-mark span {
  position: relative;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.brand-text {
  font-size: 25px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: #475569;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--rose);
}

.header-search {
  display: flex;
  align-items: center;
  border: 1px solid #ffe4e6;
  border-radius: 999px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.06);
}

.header-search input,
.mobile-search input {
  border: 0;
  outline: 0;
  min-width: 168px;
  padding: 10px 12px;
  background: transparent;
}

.header-search button,
.mobile-search button {
  border: 0;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fff1f2;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--rose);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid #ffe4e6;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
}

.mobile-nav.is-open {
  display: grid;
  gap: 14px;
}

.mobile-search {
  display: flex;
  border: 1px solid #ffe4e6;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(127, 29, 29, 0.58) 40%, rgba(244, 63, 94, 0.32) 72%, rgba(249, 115, 22, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
  padding: 64px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.92), rgba(249, 115, 22, 0.92));
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 26px 0 20px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.72;
}

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

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.detail-copy .primary-button {
  margin-top: 30px;
}

.primary-button,
.ghost-button,
.panel-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #fff;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 16px 32px rgba(244, 63, 94, 0.3);
}

.ghost-button {
  color: #fff;
  margin-left: 12px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.primary-button:hover,
.ghost-button:hover,
.panel-button:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 34px;
  background: #fff;
}

.feature-overlap {
  position: relative;
  z-index: 20;
  margin-top: -92px;
}

.feature-grid,
.movie-grid,
.category-grid,
.category-panels {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

.section-wide {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(244, 63, 94, 0.06), inset 0 -1px 0 rgba(244, 63, 94, 0.06);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.section-more {
  margin-left: auto;
  color: var(--rose);
  background: #fff1f2;
  padding: 10px 18px;
}

.tone-rose,
.category-panel.tone-rose {
  background: linear-gradient(135deg, var(--rose), var(--orange));
}

.tone-orange,
.category-panel.tone-orange {
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.tone-violet,
.category-panel.tone-violet {
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.tone-blue,
.category-panel.tone-blue {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.tone-slate,
.category-panel.tone-slate {
  background: linear-gradient(135deg, var(--slate), #111827);
}

.tone-pink,
.category-panel.tone-pink {
  background: linear-gradient(135deg, var(--pink), var(--rose));
}

.tone-red,
.category-panel.tone-red {
  background: linear-gradient(135deg, #ef4444, var(--orange));
}

.tone-cyan,
.category-panel.tone-cyan {
  background: linear-gradient(135deg, var(--cyan), #6366f1);
}

.tone-amber,
.category-panel.tone-amber {
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.tone-emerald,
.category-panel.tone-emerald {
  background: linear-gradient(135deg, var(--emerald), #14b8a6);
}

.tone-gold {
  background: linear-gradient(135deg, #facc15, var(--orange));
}

.movie-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2, #ffedd5);
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.card-meta span,
.card-meta a {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff1f2;
}

.movie-card h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 20px;
  line-height: 1.35;
}

.movie-card h2 a:hover {
  color: var(--rose);
}

.movie-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.movie-card .tag-row span {
  color: #9f1239;
  background: #fff1f2;
}

.movie-card-small .poster-link {
  aspect-ratio: 16 / 10;
}

.movie-card-small .movie-card-body {
  padding: 16px;
}

.movie-card-small h2 {
  font-size: 18px;
}

.category-card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card span {
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  font-size: 15px;
  opacity: 0.92;
}

.category-card em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

.rank-section {
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.rank-section.in-page {
  background: transparent;
}

.rank-list {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 58px 98px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #facc15, var(--orange));
  font-size: 18px;
  font-weight: 900;
}

.rank-cover {
  display: block;
  height: 66px;
  overflow: hidden;
  border-radius: 15px;
  background: #fff1f2;
}

.rank-cover img {
  height: 100%;
  object-fit: cover;
}

.rank-text {
  min-width: 0;
}

.rank-text strong,
.rank-text em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-text strong {
  margin-bottom: 6px;
  color: #111827;
  font-size: 17px;
}

.rank-text em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.rank-heat {
  color: var(--rose);
  font-weight: 900;
}

.page-hero {
  position: relative;
  color: #fff;
  padding: 96px 0 84px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -44% 30%;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(10px);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.7;
}

.soft-hero,
.search-hero {
  background: linear-gradient(135deg, #f43f5e, #ec4899, #f97316);
}

.rank-hero {
  background: linear-gradient(135deg, #f59e0b, #ef4444, #be123c);
}

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.crumbs a:hover {
  color: #fff;
}

.crumbs:not(.light) {
  color: rgba(255, 255, 255, 0.86);
}

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

.category-panel {
  position: relative;
  display: grid;
  gap: 22px;
  color: #fff;
  min-height: 280px;
  padding: 30px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.category-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
}

.category-panel h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.category-panel p {
  margin: 0;
  max-width: 540px;
  line-height: 1.7;
  opacity: 0.9;
}

.panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-links a {
  position: relative;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.panel-button {
  position: relative;
  z-index: 2;
  width: max-content;
  color: var(--rose);
  padding: 12px 18px;
  background: #fff;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid #ffe4e6;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.06);
}

.filter-bar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ffe4e6;
  border-radius: 16px;
  outline: 0;
  padding: 10px 14px;
  background: #fff;
  color: var(--text);
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.detail-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: #111827;
}

.detail-backdrop,
.detail-backdrop img,
.detail-shade {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.2);
  transform: scale(1.08);
  opacity: 0.58;
}

.detail-shade {
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 63, 94, 0.32), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(244, 63, 94, 0.35));
}

.detail-top {
  position: relative;
  z-index: 2;
  padding: 68px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  margin-top: 28px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  background: linear-gradient(135deg, #fff1f2, #ffedd5);
}

.detail-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.detail-copy .lead {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.75;
}

.detail-tags span {
  color: #fff;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.42));
  cursor: pointer;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  padding-left: 6px;
  border-radius: 999px;
  color: #fff;
  font-size: 40px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 20px 50px rgba(244, 63, 94, 0.4);
}

.play-overlay.is-hidden {
  display: none;
}

.article-card,
.side-card {
  margin-top: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.article-card {
  padding: 30px;
}

.article-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.article-card p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
}

.watch-side {
  position: sticky;
  top: 96px;
}

.side-card {
  padding: 24px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--muted);
  font-weight: 900;
}

.side-card dd {
  margin: 0;
  line-height: 1.6;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a,
.prev-next a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff7ed;
  color: #9f1239;
  font-weight: 800;
}

.side-links a:hover,
.prev-next a:hover {
  background: #fff1f2;
  color: var(--rose-dark);
}

.prev-next {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  color: #fff;
  background: linear-gradient(135deg, #111827, #7f1d1d);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 220px 240px;
  gap: 36px;
}

.footer-about p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-logo {
  color: #fff;
  font-size: 28px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover {
  color: #fff;
}

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

[data-movie-card].is-hidden {
  display: none;
}

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

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

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

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

  .watch-layout,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 320px;
  }

  .watch-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-copy {
    padding: 78px 0 116px;
  }

  .ghost-button {
    margin: 12px 0 0;
  }

  .feature-overlap {
    margin-top: -58px;
  }

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

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

  .section-heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .section-more {
    margin-left: 0;
  }

  .rank-row {
    grid-template-columns: 44px 72px minmax(0, 1fr);
  }

  .rank-heat {
    grid-column: 3;
  }

  .rank-cover {
    height: 58px;
  }

  .detail-top {
    padding: 46px 0;
  }

  .detail-copy .lead {
    font-size: 17px;
  }

  .article-card,
  .side-card {
    padding: 22px;
  }
}
