
:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --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-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.12);
  --radius-xl: 22px;
  --radius-2xl: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: linear-gradient(135deg, var(--sky-50) 0%, #ffffff 45%, var(--orange-50) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 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;
}

.page-main {
  min-height: 70vh;
  padding-top: 72px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--orange-500));
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
  font-size: 14px;
  transform: translateZ(0);
}

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

.brand-text {
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1;
  background: linear-gradient(90deg, var(--sky-600), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: var(--gray-700);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gray-700);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 18px;
  border-top: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-nav a {
  display: block;
  padding: 10px 8px;
  color: var(--gray-700);
  font-weight: 650;
}

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

.hero-slider {
  position: relative;
  height: clamp(520px, 72vh, 700px);
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #082f49);
}

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

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

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

.hero-slide.is-active > img {
  transform: scale(1.08);
}

.hero-slide.image-missing {
  background:
    radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.38), transparent 38%),
    radial-gradient(circle at 80% 30%, rgba(14, 165, 233, 0.42), transparent 36%),
    linear-gradient(135deg, #111827, #075985 56%, #7c2d12);
}

.hero-slide.image-missing::after,
.poster-frame.image-missing::after {
  content: attr(data-title);
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.44) 56%, rgba(0, 0, 0, 0.18));
}

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

.hero-copy {
  width: min(760px, 92vw);
  color: #ffffff;
  padding-bottom: 60px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-kicker span,
.card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.95);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-kicker strong {
  color: #fde68a;
  font-size: 18px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2.1vw, 20px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
}

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

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

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

.btn-primary {
  color: #ffffff;
  background: var(--sky-600);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.34);
}

.btn-primary:hover {
  background: var(--sky-700);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 18px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-search-wrap {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 6;
  transform: translateX(-50%);
}

.hero-search,
.inline-search {
  display: flex;
  gap: 10px;
  width: min(720px, 100%);
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-search input,
.inline-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 18px;
  background: transparent;
  color: var(--gray-900);
}

.hero-search button,
.inline-search button {
  border: 0;
  padding: 10px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-600), var(--orange-500));
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.content-stack {
  padding: 56px 0 0;
}

.content-stack > section,
.content-stack > article {
  margin-bottom: 56px;
}

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

.section-heading > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}

.section-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--orange-500));
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.section-heading p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--gray-600);
}

.section-more {
  flex: 0 0 auto;
  color: var(--sky-600);
  font-weight: 800;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-frame {
  position: relative;
  height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(14, 165, 233, 0.32), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.30), transparent 34%),
    linear-gradient(135deg, #111827, #1e3a8a);
}

.movie-card--large .poster-frame {
  height: 330px;
}

.movie-card--small .poster-frame {
  height: 180px;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.12) 56%, transparent);
  opacity: 0.72;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-frame img {
  transform: scale(1.1);
}

.movie-card:hover .poster-frame::before {
  opacity: 0.9;
}

.card-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  border-radius: 8px;
}

.rating-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.play-hover {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  color: var(--sky-600);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
  font-size: 24px;
}

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

.movie-card__body {
  padding: 16px;
}

.movie-card__body h3 {
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.32;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

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

.movie-card__desc {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--gray-500);
  font-size: 13px;
}

.feature-band,
.white-panel,
.side-panel {
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--sky-50), var(--orange-50));
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 42px);
}

.feature-band--alt {
  background: linear-gradient(135deg, var(--orange-50), var(--sky-50));
}

.white-panel,
.side-panel {
  background: rgba(255, 255, 255, 0.94);
}

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

.category-tile {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--sky-600), var(--orange-500));
  box-shadow: 0 14px 34px rgba(2, 132, 199, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.24);
}

.category-tile strong {
  font-size: 24px;
  line-height: 1.1;
}

.category-tile span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 32%, rgba(14, 165, 233, 0.46), transparent 30%),
    radial-gradient(circle at 76% 28%, rgba(249, 115, 22, 0.46), transparent 32%),
    linear-gradient(135deg, #0f172a, #075985 56%, #7c2d12);
}

.compact-hero {
  padding: 84px 0 70px;
}

.compact-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
}

.compact-hero p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #fed7aa;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inline-search {
  width: min(680px, 100%);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
}

.pagination a {
  color: var(--gray-700);
  background: var(--gray-100);
}

.pagination a:hover,
.pagination .is-current {
  color: #ffffff;
  background: var(--sky-600);
}

.pagination .ellipsis {
  color: var(--gray-500);
}

.player-section {
  padding: 18px 0 0;
  background: #030712;
}

.player-container {
  padding: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
}

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

.player-overlay-button {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  width: 92px;
  height: 92px;
  margin: auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--sky-600);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-size: 36px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.player-overlay-button:hover {
  transform: scale(1.06);
}

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

.player-status {
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 0 16px;
  font-size: 14px;
}

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

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

.detail-cover {
  height: 380px;
  border-radius: 22px;
}

.detail-info h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 18px;
  color: var(--gray-600);
  font-size: 18px;
}

.detail-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--orange-600);
  font-size: 24px;
  font-weight: 900;
}

.detail-score span {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.info-grid div {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--gray-50);
}

.info-grid strong {
  display: block;
  color: var(--gray-500);
  font-size: 12px;
}

.info-grid span {
  display: block;
  color: var(--gray-900);
  font-weight: 800;
}

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

.tag-list span {
  padding: 6px 11px;
  color: var(--sky-700);
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.text-section {
  margin-top: 30px;
}

.text-section h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.text-section p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

.detail-side {
  min-width: 0;
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.side-panel h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

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

.side-related .movie-card__desc,
.side-related .movie-meta-row {
  display: none;
}

.side-related .movie-card__body h3 {
  white-space: normal;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 72px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: var(--gray-50);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: var(--sky-50);
}

.rank-number {
  color: var(--orange-600);
  font-size: 22px;
  font-weight: 900;
}

.rank-row img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-200);
}

.rank-title {
  overflow: hidden;
  font-weight: 850;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-meta {
  color: var(--gray-500);
  font-size: 14px;
}

.prose-panel {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 44px 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  margin: 12px 0 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer a:hover {
  color: #7dd3fc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 14px;
}

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

  .menu-toggle {
    display: block;
  }

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

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

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

  .side-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .page-main {
    padding-top: 64px;
  }

  .header-inner {
    height: 64px;
  }

  .hero-slider {
    height: 620px;
  }

  .hero-copy {
    padding-bottom: 126px;
  }

  .hero-meta {
    gap: 8px 12px;
    font-size: 14px;
  }

  .hero-control {
    display: none;
  }

  .hero-search,
  .inline-search {
    flex-direction: column;
    border-radius: 24px;
  }

  .hero-search button,
  .inline-search button {
    width: 100%;
  }

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

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

  .poster-frame {
    height: 220px;
  }

  .movie-card--large .poster-frame {
    height: 260px;
  }

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

  .detail-cover {
    height: 360px;
  }

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

  .rank-row {
    grid-template-columns: 42px 56px minmax(0, 1fr) auto;
  }

  .rank-row img {
    width: 56px;
    height: 46px;
  }

  .rank-meta {
    display: none;
  }

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

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

  .movie-grid,
  .movie-grid--featured,
  .category-grid,
  .side-related {
    grid-template-columns: 1fr;
  }

  .poster-frame,
  .movie-card--large .poster-frame {
    height: 300px;
  }

  .feature-band,
  .white-panel,
  .side-panel {
    padding: 20px;
    border-radius: 22px;
  }
}
