:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --cyan-600: #0891b2;
  --orange-500: #f97316;
  --rose-500: #f43f5e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  background: linear-gradient(135deg, var(--gray-50), var(--emerald-50), #f0fdfa);
  color: var(--gray-900);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--emerald-600), var(--teal-600), var(--cyan-600));
  box-shadow: 0 10px 30px rgba(4, 120, 87, 0.28);
}

.header-inner {
  max-width: var(--max-width);
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.logo-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.brand:hover .logo-icon {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-name {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: rgba(236, 253, 245, 0.88);
  font-size: 12px;
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: #d1fae5;
}

.nav-dropdown {
  position: relative;
  padding: 22px 0;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: 64px;
  width: 190px;
  padding: 8px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 14px;
}

.dropdown-panel a:hover {
  background: var(--emerald-50);
  color: var(--emerald-600);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(12px);
}

.header-search input {
  width: 210px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 8px 10px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.header-search button,
.primary-button,
.secondary-button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.header-search button {
  background: #ffffff;
  color: var(--emerald-700);
  padding: 8px 16px;
}

.header-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.25);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  background: var(--emerald-700);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.mobile-panel nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px 22px;
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  color: #ffffff;
  padding: 9px 0;
  font-weight: 700;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
  transform: scale(1.03);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.32), rgba(2, 6, 23, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  min-height: 620px;
  margin: 0 auto;
  padding: 88px 24px 110px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  color: #ffffff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #facc15;
  font-size: 16px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(243, 244, 246, 0.92);
  font-size: 20px;
  line-height: 1.75;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

.hero-tags span,
.detail-tags a,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-tags span:first-child {
  background: var(--emerald-500);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--emerald-500), var(--teal-500));
  box-shadow: 0 18px 35px rgba(16, 185, 129, 0.3);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

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

.hero-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
}

.hero-dot.is-active {
  background: #ffffff;
  width: 68px;
}

.page-main,
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.section-wrap.compact {
  padding-top: 36px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-more {
  color: var(--emerald-600);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-card[hidden],
.horizontal-card[hidden],
.rank-row[hidden] {
  display: none !important;
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-200);
}

.compact-card .card-cover {
  aspect-ratio: 16 / 9;
}

.card-cover img,
.horizontal-cover img,
.category-hero-card img,
.player-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .card-cover img,
.horizontal-card:hover .horizontal-cover img,
.category-hero-card:hover img {
  transform: scale(1.08);
}

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.06));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-shade {
  opacity: 1;
}

.card-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  font-size: 12px;
  padding: 7px 10px;
}

.card-badge {
  right: 14px;
  background: var(--rose-500);
}

.rank-badge {
  left: 14px;
  min-width: 34px;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-500), #ec4899);
  box-shadow: 0 10px 20px rgba(244, 63, 94, 0.24);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(16, 185, 129, 0.86);
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0;
  transition: all 0.24s ease;
}

.movie-card:hover .play-mark,
.horizontal-card:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  padding: 18px;
}

.card-body h3,
.horizontal-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.horizontal-body h3 a:hover {
  color: var(--emerald-600);
}

.card-body p,
.horizontal-body p {
  margin: 0 0 16px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
}

.card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
}

.card-meta a {
  color: var(--emerald-600);
}

.gradient-section {
  background: linear-gradient(90deg, var(--emerald-600), var(--teal-600), var(--cyan-600));
  color: #ffffff;
}

.gradient-section .section-heading p,
.gradient-section .section-more {
  color: rgba(255, 255, 255, 0.88);
}

.gradient-section .movie-card {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.gradient-section .card-body p,
.gradient-section .card-meta {
  color: rgba(255, 255, 255, 0.78);
}

.gradient-section .card-meta a {
  color: #ffffff;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

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

.horizontal-card {
  display: flex;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.horizontal-cover {
  position: relative;
  width: 38%;
  min-width: 180px;
  overflow: hidden;
  background: var(--gray-200);
}

.horizontal-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  background: rgba(249, 115, 22, 0.55);
}

.horizontal-body {
  padding: 24px;
  flex: 1;
}

.masonry-grid {
  columns: 4 220px;
  column-gap: 22px;
}

.masonry-grid .movie-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
}

.page-hero {
  background: linear-gradient(90deg, var(--emerald-600), var(--teal-600), var(--cyan-600));
  color: #ffffff;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 58px 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

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

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

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

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

.category-hero-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-hero-card img {
  position: absolute;
  inset: 0;
}

.category-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.12));
}

.category-hero-body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}

.category-hero-body h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-hero-body p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-search,
.filter-select {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-weight: 800;
}

.filter-search {
  flex: 1;
}

.filter-search input,
.filter-select select {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  outline: 0;
  background: var(--gray-50);
  padding: 12px 16px;
}

.filter-search input {
  width: min(100%, 460px);
}

.filter-search input:focus,
.filter-select select:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
}

.empty-state {
  margin: 24px 0;
  padding: 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  color: var(--gray-600);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 72px 170px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rank-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-500), #ec4899);
}

.rank-row img {
  width: 170px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-info h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.rank-info p {
  margin: 0 0 10px;
  color: var(--gray-600);
  line-height: 1.6;
}

.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--emerald-500);
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.92fr);
  gap: 30px;
}

.player-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #020617;
  box-shadow: var(--shadow);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-frame video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000000;
  transition: opacity 0.25s ease;
}

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

.player-poster {
  position: absolute;
  inset: 0;
}

.player-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 30px;
  background: linear-gradient(135deg, var(--emerald-500), var(--teal-500));
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.38);
}

.detail-panel,
.related-panel {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-meta span,
.detail-meta a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 14px;
  font-weight: 800;
}

.detail-meta a,
.detail-meta span:first-child {
  color: var(--emerald-700);
  background: var(--emerald-100);
}

.detail-panel h2,
.detail-panel h3,
.related-panel h2 {
  margin: 26px 0 12px;
}

.detail-panel h2:first-child,
.detail-panel h3:first-child,
.related-panel h2:first-child {
  margin-top: 0;
}

.detail-panel p {
  color: var(--gray-700);
  line-height: 1.9;
  font-size: 16px;
}

.detail-tags a,
.detail-tags span {
  color: var(--gray-700);
  background: var(--gray-100);
}

.detail-tags a:hover {
  color: var(--emerald-700);
  background: var(--emerald-100);
}

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

.related-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: center;
}

.related-item img {
  width: 132px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.related-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.35;
}

.related-item p {
  margin: 0;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  margin-top: 60px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  color: var(--emerald-500);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 17px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.75;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #d1d5db;
}

.site-footer a:hover {
  color: var(--emerald-500);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

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

  .mobile-toggle {
    display: flex;
  }

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

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

  .horizontal-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

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

  .hero-content {
    padding: 64px 18px 94px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .page-main,
  .section-wrap {
    padding: 44px 16px;
  }

  .page-hero-inner {
    padding: 44px 16px;
  }

  .section-heading,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid.two,
  .movie-grid.three {
    grid-template-columns: 1fr;
  }

  .horizontal-card,
  .rank-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .horizontal-cover {
    width: 100%;
    min-width: 0;
    height: 190px;
  }

  .rank-row img {
    width: 100%;
    height: 180px;
  }

  .rank-action {
    justify-self: start;
  }

  .related-item {
    grid-template-columns: 112px 1fr;
  }

  .related-item img {
    width: 112px;
    height: 70px;
  }
}
