:root {
  color-scheme: light;
  --lotus-50: #fff1f6;
  --lotus-100: #ffe4ee;
  --lotus-500: #e63f7b;
  --lotus-600: #c82862;
  --lotus-700: #a51e50;
  --mist-50: #f7f8fb;
  --mist-100: #eef1f6;
  --mist-200: #dce2ec;
  --mist-500: #687489;
  --mist-600: #4f5b6f;
  --mist-700: #374151;
  --mist-800: #1f2937;
  --mist-900: #111827;
  --shadow-soft: 0 18px 45px rgba(31, 41, 55, 0.12);
  --shadow-card: 0 14px 35px rgba(17, 24, 39, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--mist-800);
  background: linear-gradient(180deg, var(--mist-50), #ffffff 34%, var(--mist-50));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 226, 236, 0.76);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.10);
}

.header-inner {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mist-900);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--lotus-500), #8b5cf6);
  box-shadow: 0 10px 25px rgba(230, 63, 123, 0.30);
}

.brand-text {
  font-size: 24px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
}

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

.desktop-nav a,
.nav-menu > button,
.mobile-nav a {
  color: var(--mist-700);
  text-decoration: none;
  font-weight: 650;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a,
.nav-menu > button {
  padding: 10px 14px;
  background: transparent;
  cursor: pointer;
}

.desktop-nav a:hover,
.nav-menu > button:hover,
.mobile-nav a:hover {
  color: var(--lotus-700);
  background: var(--lotus-50);
}

.nav-menu {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 210px;
  padding: 10px;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--mist-200);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: var(--mist-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--mist-800);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-nav a {
  padding: 12px 14px;
  background: var(--mist-50);
}

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

main {
  padding-top: 72px;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
}

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

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

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

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 38%, rgba(230, 63, 123, 0.18), transparent 28%), linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.36)), linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 78vh;
  margin: 0 auto;
  padding: 80px 24px 90px;
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  max-width: 760px;
  animation: fadeRise 0.6s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  color: #ffffff;
  background: rgba(230, 63, 123, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.04;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-weight: 900;
}

.hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

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

.primary-btn,
.secondary-btn,
.text-link,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
  padding: 13px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--lotus-500), var(--lotus-700));
  box-shadow: 0 14px 30px rgba(230, 63, 123, 0.36);
}

.secondary-btn {
  padding: 12px 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.primary-btn:hover,
.secondary-btn:hover,
.text-link:hover,
.section-more:hover {
  transform: translateY(-2px);
}

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

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

.hero-dots button.is-active {
  background: #ffffff;
}

.page-shell,
.page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}

.page-section.tight {
  padding-top: 32px;
}

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

.section-heading h2,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  color: var(--mist-900);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-weight: 900;
}

.section-heading h2 {
  font-size: clamp(26px, 4vw, 40px);
}

.section-heading p,
.page-hero p,
.detail-title p,
.footer-inner p {
  margin: 8px 0 0;
  color: var(--mist-600);
  line-height: 1.8;
}

.section-more,
.text-link {
  color: var(--lotus-700);
}

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

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

.movie-card,
.wide-card,
.category-tile,
.info-panel,
.player-panel,
.detail-copy,
.related-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 226, 236, 0.82);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.movie-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 63, 123, 0.38);
  box-shadow: var(--shadow-card);
}

.movie-poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mist-200), var(--mist-100));
}

.movie-poster,
.wide-poster img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-poster,
.wide-card:hover .wide-poster img {
  transform: scale(1.06);
}

.type-badge,
.rank-badge,
.play-bubble {
  position: absolute;
  z-index: 2;
}

.type-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.rank-badge {
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, var(--lotus-600));
  border-radius: 12px;
  font-weight: 900;
}

.play-bubble,
.wide-poster span {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: 0.25s ease;
}

.movie-card:hover .play-bubble,
.wide-card:hover .wide-poster span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.movie-card-meta,
.detail-meta,
.breadcrumb,
.rank-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--mist-500);
  font-size: 13px;
  font-weight: 650;
}

.movie-card-meta span,
.detail-meta span,
.rank-meta span {
  padding: 4px 8px;
  background: var(--mist-50);
  border-radius: 999px;
}

.movie-card h2 {
  margin: 12px 0 8px;
  color: var(--mist-900);
  font-size: 19px;
  line-height: 1.35;
}

.movie-card h2 a,
.wide-content h2 a,
.rank-title a {
  color: inherit;
  text-decoration: none;
}

.movie-card h2 a:hover,
.wide-content h2 a:hover,
.rank-title a:hover {
  color: var(--lotus-700);
}

.movie-card p {
  min-height: 48px;
  margin: 0;
  color: var(--mist-600);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tag-row span,
.detail-tags span {
  padding: 5px 9px;
  color: var(--lotus-700);
  background: var(--lotus-50);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

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

.wide-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.wide-poster {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--mist-100);
}

.wide-content {
  padding: 24px;
}

.wide-content h2 {
  margin: 16px 0 12px;
  color: var(--mist-900);
  font-size: 24px;
  line-height: 1.25;
}

.wide-content p {
  color: var(--mist-600);
  line-height: 1.8;
}

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

.category-tile {
  padding: 22px;
  min-height: 156px;
  color: var(--mist-800);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: auto -20px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(230, 63, 123, 0.20), transparent 68%);
}

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

.category-tile strong {
  display: block;
  color: var(--mist-900);
  font-size: 22px;
  margin-bottom: 10px;
}

.category-tile span {
  color: var(--mist-600);
  line-height: 1.65;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--mist-900);
  background: linear-gradient(135deg, #ffffff, var(--lotus-50) 48%, var(--mist-100));
  border-bottom: 1px solid var(--mist-200);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 58px;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 62px);
}

.filter-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mist-200);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(17, 24, 39, 0.05);
}

.filter-search {
  flex: 1;
}

.filter-search input,
.filter-selects select,
.index-search input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  color: var(--mist-800);
  background: var(--mist-50);
  border: 1px solid var(--mist-200);
  border-radius: 16px;
  outline: none;
  font: inherit;
}

.filter-search input:focus,
.filter-selects select:focus,
.index-search input:focus {
  border-color: var(--lotus-500);
  box-shadow: 0 0 0 4px rgba(230, 63, 123, 0.12);
}

.filter-selects {
  display: flex;
  gap: 12px;
}

.index-search {
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  backdrop-filter: blur(16px);
}

.index-search input {
  background: rgba(255, 255, 255, 0.90);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 88px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--mist-200);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--lotus-500), #8b5cf6);
  border-radius: 15px;
  font-weight: 900;
}

.rank-cover {
  width: 88px;
  height: 116px;
  overflow: hidden;
  background: var(--mist-100);
  border-radius: 14px;
}

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

.rank-title {
  margin: 0 0 8px;
  color: var(--mist-900);
  font-size: 21px;
}

.rank-desc {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--mist-600);
  line-height: 1.65;
}

.detail-hero {
  position: relative;
  color: #ffffff;
  background: #050505;
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--poster);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.10);
  opacity: 0.42;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52)), linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 70%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 58px 24px 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: end;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: var(--mist-100);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.breadcrumb {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.detail-title h1 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
}

.detail-title p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.detail-meta {
  margin: 18px 0;
}

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

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

.player-panel,
.detail-copy,
.related-panel,
.info-panel {
  padding: 24px;
}

.player-panel h2,
.detail-copy h2,
.related-panel h2,
.info-panel h2 {
  margin: 0 0 18px;
  color: var(--mist-900);
  font-size: 26px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-weight: 900;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 22px;
}

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

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lotus-500), var(--lotus-700));
  box-shadow: 0 20px 46px rgba(230, 63, 123, 0.38);
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

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

.detail-copy p,
.info-panel p,
.related-panel p {
  color: var(--mist-700);
  line-height: 1.9;
  font-size: 16px;
}

.detail-copy p + p {
  margin-top: 18px;
}

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

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mist-200);
}

.info-list span:first-child {
  color: var(--mist-500);
}

.info-list span:last-child {
  color: var(--mist-900);
  font-weight: 800;
  text-align: right;
}

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

.related-link {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  color: var(--mist-800);
  text-decoration: none;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.related-link:hover {
  background: var(--lotus-50);
}

.related-link img {
  width: 74px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--mist-100);
}

.related-link strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mist-900);
}

.related-link span {
  color: var(--mist-500);
  font-size: 13px;
}

.site-footer {
  margin-top: 36px;
  color: var(--mist-600);
  background: #ffffff;
  border-top: 1px solid var(--mist-200);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer-inner h2 {
  margin: 0 0 14px;
  color: var(--mist-900);
  font-size: 17px;
}

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

.footer-links a {
  color: var(--mist-600);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lotus-700);
}

.footer-bottom {
  padding: 18px 24px;
  text-align: center;
  border-top: 1px solid var(--mist-100);
  color: var(--mist-500);
  font-size: 14px;
}

.empty-filter {
  display: none;
  padding: 28px;
  text-align: center;
  color: var(--mist-600);
  background: var(--mist-50);
  border-radius: 20px;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .movie-grid,
  .movie-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .header-inner {
    height: 64px;
    padding: 0 18px;
  }

  main {
    padding-top: 64px;
  }

  .hero,
  .hero-content {
    min-height: 72vh;
  }

  .hero-content {
    padding: 70px 18px 80px;
  }

  .page-shell,
  .page-section,
  .page-hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .wide-grid,
  .wide-card,
  .detail-hero-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .wide-poster {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

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

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

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

  .rank-item {
    grid-template-columns: 46px 76px 1fr;
  }

  .rank-item .primary-btn {
    grid-column: 1 / -1;
  }

  .detail-hero-inner {
    padding-top: 36px;
  }

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

@media (max-width: 560px) {
  .brand-text {
    font-size: 20px;
  }

  .hero-actions,
  .cta-row,
  .index-search {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

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

  .movie-card-compact .movie-poster-link {
    aspect-ratio: auto;
    min-height: 170px;
  }

  .rank-item {
    grid-template-columns: 42px 1fr;
  }

  .rank-cover {
    display: none;
  }

  .player-start {
    width: 76px;
    height: 76px;
    font-size: 16px;
  }
}
