:root {
  --pink: #ffb6c1;
  --pink-strong: #ff8fa3;
  --blue: #87ceeb;
  --mint: #98d8c8;
  --peach: #ffdab9;
  --cream: #fff8dc;
  --lavender: #e6e6fa;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: 0 2px 15px rgba(0, 0, 0, 0.08);
  --soft-lg: 0 4px 25px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 182, 193, 0.22), transparent 30rem),
    radial-gradient(circle at top right, rgba(135, 206, 235, 0.20), transparent 28rem),
    #f9fafb;
}

img,
video {
  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: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(243, 244, 246, 0.9);
  backdrop-filter: blur(18px);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--pink-strong), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: var(--soft);
  font-size: 15px;
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  color: #4b5563;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #be5268;
  background: rgba(255, 182, 193, 0.18);
}

.top-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 182, 193, 0.45);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--soft);
}

.top-search input,
.mobile-search input,
.large-search input,
.page-filter input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.top-search input {
  width: 190px;
  padding: 10px 14px;
}

.top-search button,
.mobile-search button,
.large-search button,
.page-filter button {
  border: 0;
  color: #fff;
  cursor: pointer;
  background: var(--pink-strong);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-search button {
  padding: 10px 16px;
}

.top-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.page-filter button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 182, 193, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #be5268;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(243, 244, 246, 0.9);
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
}

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

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
}

.mobile-search input {
  min-width: 0;
  border-radius: 14px;
  padding: 12px 14px;
  background: #f9fafb;
}

.mobile-search button {
  border-radius: 14px;
  padding: 0 18px;
}

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

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #111827;
}

.hero-slider,
.hero-slide {
  min-height: 660px;
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: blur(4px);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.20)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.88), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 56px;
  color: #fff;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #be5268;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.detail-hero .eyebrow {
  color: #ffdce3;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 8vw, 86px);
}

.hero-summary {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.9;
}

.hero-tags,
.tag-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

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

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--pink-strong), var(--blue));
  box-shadow: 0 18px 38px rgba(255, 143, 163, 0.32);
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-lg);
}

.hero-poster-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.hero-poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(135, 206, 235, 0.2));
}

.hero-poster-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-prev,
.hero-next {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

.section-heading h2,
.ranking-title h2,
.content-card h2,
.player-caption h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  color: #be5268;
  font-weight: 800;
}

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

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

.category-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 182, 193, 0.20);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 143, 163, 0.42);
  box-shadow: var(--soft-lg);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #be5268;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.24), rgba(135, 206, 235, 0.24));
}

.category-card strong {
  font-size: 20px;
}

.category-card span:last-child {
  color: var(--muted);
  line-height: 1.7;
}

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

.featured-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-snap-type: x proximity;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(243, 244, 246, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.22), rgba(135, 206, 235, 0.24));
}

.movie-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.movie-card:hover .movie-poster {
  transform: scale(1.05);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 143, 163, 0.92);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-strong), #fb7185);
  font-weight: 900;
  box-shadow: var(--soft);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card h2 a:hover {
  color: #be5268;
}

.movie-card p {
  min-height: 52px;
  margin: 0 0 14px;
  color: #5b6472;
  font-size: 14px;
  line-height: 1.75;
}

.tag-row span {
  color: #be5268;
  background: rgba(255, 182, 193, 0.18);
}

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

.ranking-panel {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft);
}

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

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

.ranking-title span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink-strong), var(--blue));
  font-weight: 900;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 32px 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
  background: rgba(255, 182, 193, 0.14);
  transform: translateX(3px);
}

.ranking-number {
  color: #be5268;
  font-weight: 900;
  text-align: center;
}

.ranking-item img {
  width: 54px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.22), rgba(135, 206, 235, 0.24));
}

.ranking-info strong,
.ranking-info small {
  display: block;
}

.ranking-info strong {
  color: var(--ink);
  line-height: 1.35;
}

.ranking-info small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.page-hero {
  padding: 72px 0 64px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 248, 220, 0.74), rgba(230, 230, 250, 0.58)),
    radial-gradient(circle at 15% 10%, rgba(255, 182, 193, 0.25), transparent 24rem),
    radial-gradient(circle at 85% 0%, rgba(135, 206, 235, 0.25), transparent 24rem);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

.breadcrumb,
.detail-breadcrumb a {
  color: #be5268;
  font-weight: 800;
}

.page-filter,
.large-search {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(720px, 100%);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 182, 193, 0.45);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft);
}

.page-filter input,
.large-search input {
  min-width: 0;
  padding: 16px 18px;
}

.page-filter button,
.large-search button {
  padding: 0 24px;
}

.pill-row {
  margin-bottom: 26px;
}

.pill-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4b5563;
  background: #fff;
  box-shadow: var(--soft);
  transition: background 0.2s ease, color 0.2s ease;
}

.pill-link:hover,
.pill-link.active {
  color: #fff;
  background: var(--pink-strong);
}

.filter-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 22px;
}

.filter-bar label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-weight: 800;
}

.filter-bar select {
  border: 1px solid rgba(255, 182, 193, 0.42);
  border-radius: 14px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  outline: 0;
  box-shadow: var(--soft);
}

.empty-state {
  margin-top: 32px;
  padding: 48px;
  text-align: center;
  color: #6b7280;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111827;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  transform: scale(1.06);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.65)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.90), rgba(17, 24, 39, 0.20));
}

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

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  border: 8px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.22), rgba(135, 206, 235, 0.24));
}

.detail-info h1 {
  max-width: 850px;
  font-size: clamp(34px, 6vw, 72px);
}

.detail-one-line {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.9;
}

.detail-section {
  padding-top: 48px;
}

.player-card,
.content-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--soft-lg);
}

.video-shell {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000;
}

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.25));
}

.play-layer span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-strong), var(--blue));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  font-size: 28px;
}

.play-layer strong {
  font-size: 18px;
}

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

.player-caption {
  padding: 24px 28px 28px;
}

.player-caption p {
  margin: 10px 0 0;
  color: #5b6472;
  line-height: 1.85;
}

.detail-content {
  padding-top: 32px;
}

.content-card {
  padding: 30px;
}

.content-card h2 + p {
  margin-top: 12px;
}

.content-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 2;
}

.info-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.info-table div {
  padding: 16px;
  border-radius: 18px;
  background: #f9fafb;
}

.info-table span,
.info-table strong {
  display: block;
}

.info-table span {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 6px;
}

.info-table strong {
  color: var(--ink);
}

.site-footer {
  margin-top: 56px;
  padding: 48px 0 24px;
  color: #5b6472;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(243, 244, 246, 0.95);
}

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

.footer-grid p {
  max-width: 380px;
  line-height: 1.8;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
}

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

.footer-links a:hover,
.footer-bottom a:hover {
  color: #be5268;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .top-search {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 32px;
  }

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

  .two-column-section,
  .ranking-page-layout {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }
}

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

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .logo-text {
    font-size: 20px;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 26px;
    padding-top: 44px;
  }

  .hero-poster-card {
    width: min(240px, 66vw);
    justify-self: center;
    transform: rotate(0deg);
  }

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

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

  .detail-poster {
    width: min(240px, 70vw);
  }

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

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

  .hero h1,
  .page-hero h1,
  .detail-info h1 {
    letter-spacing: -0.02em;
  }

  .hero-summary,
  .detail-one-line,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .detail-actions,
  .section-heading,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

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

  .featured-strip {
    grid-auto-columns: 78vw;
  }

  .page-filter,
  .large-search {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .page-filter button,
  .large-search button {
    min-height: 48px;
  }

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