:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --border: #e5e7eb;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --red: #dc2626;
  --orange: #f97316;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

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.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.12rem;
}

.brand-copy em {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

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

.nav-link,
.mobile-nav-link {
  padding: 9px 13px;
  border-radius: 10px;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--blue);
  background: #eff6ff;
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-search-wrap input,
.filter-select {
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 999px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.header-search input {
  width: 230px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-search-wrap input:focus,
.filter-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.header-search button,
.mobile-search button,
.big-search button {
  border: 0;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #111827;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  padding: 14px 16px 18px;
  background: #fff;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

.mobile-panel nav {
  display: grid;
  gap: 6px;
}

.hero-slider {
  position: relative;
  height: min(72vh, 640px);
  min-height: 520px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, #334155, #020617 70%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.38), rgba(2, 6, 23, 0.55)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent 48%);
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
}

.hero-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--red), #db2777);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 18px;
  color: #e5e7eb;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-meta,
.hero-tags,
.detail-meta,
.detail-tags,
.card-tags,
.page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-meta span,
.detail-meta span,
.page-stats span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

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

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-wide {
  width: 100%;
  margin-top: 18px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  font-size: 2rem;
  cursor: pointer;
  transition: background 160ms ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

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

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

.section-panel {
  padding: 56px 0;
}

.section-blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

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

.section-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.18);
}

.section-heading h2,
.ranking-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.section-heading p,
.ranking-head p {
  margin: 2px 0 0;
  color: var(--muted);
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #334155);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 180ms ease;
}

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

.card-type,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.rank-badge {
  right: auto;
  left: 12px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  min-height: 48px;
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover h3 {
  color: var(--blue);
}

.card-body p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 0.82rem;
}

.movie-card-compact a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
}

.movie-card-compact .card-media {
  height: 112px;
  aspect-ratio: auto;
}

.movie-card-compact .card-body h3 {
  min-height: auto;
}

.movie-card-compact .card-body p {
  min-height: auto;
}

.category-strip {
  margin-bottom: 28px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.strip-head h3 {
  margin: 0;
  font-size: 1.4rem;
}

.strip-head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.strip-head a {
  color: var(--blue);
  font-weight: 800;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

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

.ranking-panel,
.prose-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.ranking-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ranking-head > span {
  font-size: 2rem;
}

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-panel p {
  margin: 0;
  color: #dbeafe;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #2563eb);
}

.page-hero h1 {
  max-width: 820px;
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #e5e7eb;
  font-size: 1.1rem;
}

.page-hero-blue {
  background: linear-gradient(135deg, #1e3a8a, #0891b2);
}

.page-hero-warm {
  background: linear-gradient(135deg, #9a3412, #dc2626);
}

.page-hero-dark {
  background: radial-gradient(circle at 10% 20%, #334155, #020617 72%);
}

.page-hero-category {
  background: linear-gradient(135deg, #0f172a, #334155);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

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

.page-stats {
  margin-top: 22px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(130px, 170px));
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.filter-search-wrap input,
.filter-select {
  width: 100%;
  padding: 11px 14px;
}

.filter-count,
.search-summary {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 650;
}

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

.category-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 92px 92px;
  gap: 4px;
  background: #0f172a;
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.category-thumbs img:first-child {
  grid-row: span 2;
}

.category-card-body {
  padding: 20px;
}

.category-card-body span {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.86rem;
}

.category-card-body h2 {
  margin: 6px 0 8px;
}

.category-card-body p {
  margin: 0;
  color: var(--muted);
}

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

.ranking-row {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.ranking-row a {
  display: grid;
  grid-template-columns: 58px 150px 1fr 110px;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
}

.ranking-row img {
  width: 150px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  background: #0f172a;
}

.ranking-row-body h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.ranking-row-body p {
  margin: 0 0 8px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.score-box {
  text-align: center;
}

.score-box strong {
  display: block;
  color: #ef4444;
  font-size: 1.7rem;
  line-height: 1;
}

.score-box span {
  color: var(--muted);
  font-size: 0.8rem;
}

.big-search {
  display: flex;
  max-width: 720px;
  gap: 10px;
  margin-top: 26px;
}

.big-search input {
  flex: 1;
  padding: 14px 18px;
}

.big-search button {
  padding: 14px 24px;
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.04);
  opacity: 0.74;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 42px 0 56px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr;
  gap: 34px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #111827, #334155);
}

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

.detail-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1;
}

.detail-one-line {
  max-width: 820px;
  color: #e5e7eb;
  font-size: 1.16rem;
}

.detail-tags {
  margin-top: 16px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}

.prose-card,
.info-card {
  padding: 28px;
}

.prose-card h2,
.info-card h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.prose-card p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 1.02rem;
}

.info-card dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.info-card dt {
  color: var(--muted);
  font-weight: 800;
}

.info-card dd {
  margin: 0;
}

.info-card a {
  color: var(--blue);
  font-weight: 800;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 32%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.28));
  cursor: pointer;
}

.play-overlay span {
  width: 84px;
  height: 84px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 2rem;
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.38);
}

.play-overlay strong {
  font-size: 1.2rem;
}

.player-shell.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 6, 23, 0.65);
  font-size: 0.86rem;
  pointer-events: none;
}

.player-shell.is-playing .player-status {
  display: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 56px 0;
}

.guide-grid article {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.guide-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.guide-grid h2 {
  margin: 18px 0 8px;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 44px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 48px 0;
}

.footer-brand {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 12px 0 0;
  color: #94a3b8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.from-orange-to-red,
.from-red-to-orange {
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.from-pink-to-rose,
.from-red-to-pink {
  background: linear-gradient(135deg, #fdf2f8, #fff1f2);
}

.from-amber-to-orange,
.from-yellow-to-amber {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.from-violet-to-indigo {
  background: linear-gradient(135deg, #f5f3ff, #eef2ff);
}

.from-blue-to-cyan,
.from-indigo-to-blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.from-slate-to-gray {
  background: linear-gradient(135deg, #f8fafc, #f3f4f6);
}

.from-green-to-emerald,
.from-cyan-to-teal {
  background: linear-gradient(135deg, #ecfdf5, #ecfeff);
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

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

  .header-search {
    display: none;
  }

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

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

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

  .ranking-panel {
    position: static;
  }
}

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

  .brand-copy em {
    display: none;
  }

  .hero-slider {
    height: 620px;
    min-height: 620px;
  }

  .hero-copy {
    bottom: 80px;
  }

  .hero-arrow {
    display: none;
  }

  .movie-grid-four,
  .movie-grid-three,
  .category-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-compact a {
    grid-template-columns: 120px 1fr;
  }

  .movie-card-compact .card-media {
    height: 100%;
    min-height: 118px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .strip-head,
  .cta-panel,
  .footer-bottom .container,
  .big-search {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .ranking-row a {
    grid-template-columns: 42px 96px 1fr;
  }

  .ranking-row img {
    width: 96px;
    height: 72px;
  }

  .score-box {
    grid-column: 2 / -1;
    text-align: left;
  }
}
