:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-50: #fdf2f8;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --purple-50: #faf5ff;
  --purple-500: #a855f7;
  --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-md: 0 10px 30px rgba(17, 24, 39, 0.10);
  --shadow-lg: 0 18px 50px rgba(17, 24, 39, 0.16);
  --radius-xl: 22px;
  --radius-2xl: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(135deg, var(--rose-50), var(--white) 48%, var(--pink-50));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.94), rgba(253, 242, 248, 0.94), rgba(250, 245, 255, 0.94));
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #fb7185, var(--pink-500));
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.28);
  font-size: 24px;
  transition: transform 0.25s ease;
}

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

.brand-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--gray-600);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1 1 auto;
}

.nav-links a {
  position: relative;
  color: var(--gray-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--rose-600);
  transition: width 0.22s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--rose-600);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(300px, 26vw);
}

.header-search input,
.big-search input,
.page-tools input,
.side-search {
  width: 100%;
  border: 2px solid var(--rose-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  outline: 0;
  color: var(--gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  padding: 11px 78px 11px 18px;
}

.header-search input:focus,
.big-search input:focus,
.page-tools input:focus,
.side-search:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.header-search button,
.big-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  padding: 8px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.big-search button:hover {
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.25);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--gray-700);
  font-size: 30px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(244, 63, 94, 0.35), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(168, 85, 247, 0.18), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  align-items: center;
  gap: 44px;
}

.hero-copy {
  color: var(--white);
  max-width: 740px;
  animation: fade-up 0.65s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #fbbf24;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "★";
}

.eyebrow-dark {
  color: var(--rose-600);
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

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

.hero-pills,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

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

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.34);
}

.btn-soft {
  color: var(--rose-700, #be123c);
  background: rgba(255, 255, 255, 0.92);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel,
.callout-card,
.detail-info-card,
.detail-article,
.detail-side-list {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-panel {
  padding: 26px;
}

.hero-panel h2,
.callout-card h2,
.detail-info-card h1 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-size: 26px;
  line-height: 1.25;
}

.hero-panel p,
.callout-card p,
.detail-info-card p {
  margin: 0;
  color: var(--gray-600);
}

.hero-panel-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 34px 0 18px;
}

.section-gradient {
  background: linear-gradient(90deg, rgba(250, 245, 255, 0.76), rgba(253, 242, 248, 0.76));
}

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

.section-heading h2,
.page-hero h1,
.detail-article h2,
.detail-side-list h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.compact-heading h2 {
  font-size: 32px;
}

.text-link {
  color: var(--rose-600);
  font-weight: 800;
}

.scroll-controls {
  display: flex;
  gap: 8px;
}

.scroll-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--gray-800);
  font-size: 24px;
  cursor: pointer;
}

.category-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 16px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar,
.poster-scroller::-webkit-scrollbar {
  display: none;
}

.category-rail a,
.filter-chips button,
.callout-tags a,
.callout-tags button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 0;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--white);
  padding: 12px 20px;
  font-weight: 750;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-rail a:hover,
.filter-chips button:hover,
.callout-tags a:hover,
.callout-tags button:hover {
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  transform: translateY(-2px);
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card__link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card__link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.movie-card__poster {
  position: relative;
  height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--gray-100);
}

.movie-card--compact .movie-card__poster {
  height: 230px;
}

.movie-card--rank .movie-card__poster {
  height: 240px;
}

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

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

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.7), transparent);
}

.movie-card__poster figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  color: var(--white);
  background: rgba(244, 63, 94, 0.9);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #f59e0b, var(--rose-500));
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.movie-card__body {
  padding: 18px;
}

.movie-card__meta {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-card h3 {
  margin: 0;
  color: var(--gray-900);
  font-size: 20px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.movie-card__link:hover h3 {
  color: var(--rose-600);
}

.movie-card p {
  display: -webkit-box;
  min-height: 3.15em;
  margin: 10px 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  display: inline-flex;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose-100), var(--pink-50));
  color: var(--rose-600);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 750;
}

.poster-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scrollbar-width: none;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  gap: 32px;
  align-items: start;
}

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

.movie-row-card a {
  display: grid;
  grid-template-columns: auto 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 112px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-panel .movie-row-card a {
  grid-template-columns: 72px minmax(0, 1fr);
}

.hero-panel .movie-row-card .list-rank {
  display: none;
}

.movie-row-card a:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.movie-row-card img {
  width: 86px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--gray-100);
}

.hero-panel .movie-row-card img {
  width: 72px;
  height: 74px;
}

.list-rank {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--purple-500));
  font-weight: 900;
}

.movie-row-card__text {
  display: grid;
  min-width: 0;
}

.movie-row-card strong {
  overflow: hidden;
  color: var(--gray-900);
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-row-card em {
  overflow: hidden;
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-row-card small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 13px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.callout-card {
  padding: 28px;
}

.big-search {
  position: relative;
  margin-top: 22px;
}

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

.callout-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.callout-tags button {
  font-size: 14px;
}

.page-hero {
  padding: 72px 0 48px;
  background: linear-gradient(135deg, var(--rose-50), var(--white), var(--purple-50));
}

.page-hero--soft {
  background: linear-gradient(135deg, var(--pink-50), var(--white) 54%, var(--rose-50));
}

.page-hero--search {
  background: radial-gradient(circle at 20% 20%, rgba(244, 63, 94, 0.16), transparent 35%), linear-gradient(135deg, var(--rose-50), var(--white), var(--pink-50));
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--gray-600);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--rose-600);
}

.page-tools {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-top: 26px;
}

.page-tools--wide {
  max-width: 100%;
}

.page-tools input,
.side-search {
  padding: 14px 18px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.category-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.category-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.18));
}

.category-card__body {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--white);
}

.category-card strong {
  font-size: 28px;
  line-height: 1.1;
}

.category-card em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

.category-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.category-card__links span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 5px 10px;
  font-size: 12px;
}

.detail-hero {
  padding: 34px 0 64px;
  background: radial-gradient(circle at 15% 12%, rgba(244, 63, 94, 0.20), transparent 28%), linear-gradient(135deg, var(--gray-900), #2f1722 46%, #3a1f3d);
}

.detail-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.detail-hero .breadcrumb strong,
.detail-hero .breadcrumb a:hover {
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.player-card {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-cover span {
  display: inline-flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 18px 42px rgba(244, 63, 94, 0.42);
  font-size: 36px;
  transform: translateX(3px);
}

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

.detail-info-card {
  display: grid;
  gap: 20px;
  padding: 20px;
}

.detail-info-card img {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  object-fit: cover;
  background: var(--gray-100);
}

.detail-info-card .detail-meta span {
  color: var(--rose-600);
  background: var(--rose-50);
}

.tag-list--detail {
  margin-top: 18px;
}

.detail-content-section {
  padding-top: 54px;
}

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

.detail-article,
.detail-side-list {
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
}

.detail-article h2,
.detail-side-list h2 {
  font-size: 28px;
  margin-top: 0;
}

.detail-article h2 + p {
  margin-top: 14px;
}

.detail-article p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.95;
}

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

.related-grid .movie-card__poster {
  height: 210px;
}

.sticky-card {
  position: sticky;
  top: 104px;
}

.empty-state {
  display: none;
  margin-top: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 38px;
  text-align: center;
  color: var(--gray-500);
  box-shadow: var(--shadow-md);
}

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

.is-hidden {
  display: none !important;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-column,
  .detail-grid,
  .detail-content-grid,
  .rankings-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-bottom: 34px;
  }

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

  .detail-info-card {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
  }

  .detail-info-card img {
    height: 360px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links,
  .header-search {
    position: absolute;
    left: 16px;
    right: 16px;
    display: none;
    width: auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links {
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
  }

  .nav-links a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--rose-100);
  }

  .nav-links a::after {
    display: none;
  }

  .header-search {
    top: 292px;
    padding: 12px;
  }

  .nav-links.open,
  .header-search.open {
    display: flex;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .hero,
  .hero-grid {
    min-height: 680px;
  }

  .hero-grid {
    align-content: center;
    gap: 24px;
  }

  .hero-panel {
    padding: 18px;
  }

  .section {
    padding: 52px 0;
  }

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

  .movie-grid,
  .movie-grid--home,
  .movie-grid--rankings,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

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

  .brand-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-pills,
  .detail-meta {
    gap: 9px;
  }

  .btn {
    width: 100%;
  }

  .movie-grid,
  .movie-grid--home,
  .movie-grid--rankings,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card__poster {
    height: 360px;
  }

  .poster-scroller {
    grid-auto-columns: 78vw;
  }

  .movie-row-card a,
  .hero-panel .movie-row-card a {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .list-rank {
    display: none;
  }

  .page-hero {
    padding: 48px 0 34px;
  }

  .detail-hero {
    padding-bottom: 42px;
  }

  .play-cover span {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .detail-info-card img {
    height: 420px;
  }

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