:root {
  --coral: #ff5533;
  --coral-dark: #ed3010;
  --peach: #ff9374;
  --peach-soft: #fff5f2;
  --peach-border: #ffd4c7;
  --ink: #151827;
  --muted: #6b7280;
  --panel: #ffffff;
  --line: #f1d8d0;
  --shadow: 0 24px 70px rgba(63, 28, 20, 0.14);
  --gradient: linear-gradient(135deg, #ffd4c7, #ffab9d, #ff9374, #ff7c64, #ff7a47);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 147, 116, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(255, 85, 51, 0.14), transparent 24rem),
    linear-gradient(180deg, #fff7f4 0%, #fff 42%, #fff8f6 100%);
}

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: 60;
  backdrop-filter: blur(18px);
  background: rgba(255, 122, 71, 0.92);
  box-shadow: 0 10px 30px rgba(237, 48, 16, 0.16);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.brand-mark span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #ffffff;
}

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

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

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

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

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  gap: 8px;
  flex-wrap: wrap;
}

main {
  min-height: 70vh;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 56px;
  width: 100%;
  padding: 104px max(32px, calc((100vw - 1180px) / 2)) 88px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(20, 10, 8, 0.9), rgba(20, 10, 8, 0.55), rgba(20, 10, 8, 0.28)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 147, 116, 0.36), transparent 26rem),
    linear-gradient(180deg, transparent, rgba(21, 24, 39, 0.22) 55%, rgba(21, 24, 39, 0.88));
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #ffe8e1;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.8;
}

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

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

.primary-button,
.ghost-button,
.text-link,
.list-action,
.quick-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button,
.quick-search button {
  min-height: 46px;
  padding: 0 24px;
  color: #ffffff;
  font-weight: 800;
  background: var(--gradient);
  box-shadow: 0 16px 34px rgba(255, 85, 51, 0.28);
}

.primary-button:hover,
.quick-search button:hover,
.list-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(255, 85, 51, 0.32);
}

.ghost-button {
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.ghost-button.light {
  color: var(--coral-dark);
  background: #ffffff;
  border-color: var(--peach-border);
}

.hero-poster {
  display: block;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

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

.hero-poster span,
.play-dot,
.detail-poster span {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--coral);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.hero-poster span {
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  font-size: 24px;
}

.hero-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 34px;
  cursor: pointer;
}

.hero-control.prev {
  left: 22px;
}

.hero-control.next {
  right: 22px;
}

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

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

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

.section-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto;
}

.intro-strip,
.highlight-box,
.content-card,
.side-card,
.filter-panel,
.page-hero,
.hot-panel {
  border: 1px solid rgba(255, 212, 199, 0.76);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 34px;
}

.intro-strip h2,
.section-head h2,
.page-hero h1,
.content-card h2,
.side-card h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.intro-strip h2,
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.intro-strip p,
.page-hero p,
.category-tile p,
.movie-card p,
.content-card p,
.detail-copy p {
  color: var(--muted);
}

.quick-search {
  display: flex;
  width: min(430px, 100%);
  padding: 8px;
  border: 1px solid var(--peach-border);
  border-radius: 999px;
  background: #ffffff;
}

.quick-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
}

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

.section-head.small h2 {
  font-size: 28px;
}

.text-link {
  color: var(--coral-dark);
  font-weight: 800;
}

.text-link:hover {
  transform: translateX(3px);
}

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

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

.category-tile {
  display: block;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 199, 0.8);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(63, 28, 20, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover,
.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(63, 28, 20, 0.16);
}

.tile-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  height: 120px;
  padding: 8px;
  background: var(--peach-soft);
}

.tile-images img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.tile-content {
  padding: 18px;
}

.tile-content span {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
}

.tile-content strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.tile-content p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.highlight-box {
  padding: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 147, 116, 0.24), transparent 28rem),
    linear-gradient(135deg, rgba(255, 245, 242, 0.94), rgba(255, 255, 255, 0.9));
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 212, 199, 0.75);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(63, 28, 20, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #fff5f2, #ffe8e1);
}

.movie-card.compact .card-cover {
  aspect-ratio: 3 / 4.1;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.movie-card:hover .card-cover img,
.category-tile:hover img {
  transform: scale(1.06);
}

.year-pill,
.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: auto;
  right: 12px;
  background: var(--gradient);
}

.play-dot {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
}

.card-body {
  padding: 18px;
}

.card-meta,
.card-foot,
.list-meta,
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--peach-soft);
  color: var(--coral-dark);
  font-weight: 700;
}

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.movie-card p {
  min-height: 48px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

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

.card-body .tag-row {
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 700;
  background: #ffe8e1;
}

.card-foot {
  justify-content: space-between;
  margin-top: 16px;
}

.card-foot a {
  color: var(--coral-dark);
  font-weight: 800;
}

.split-sections {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.8fr);
  align-items: start;
  gap: 28px;
}

.hot-panel {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.rank-list,
.list-stack,
.rank-page-list,
.side-list {
  display: grid;
  gap: 14px;
}

.movie-list-item {
  display: grid;
  grid-template-columns: auto 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 212, 199, 0.65);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(63, 28, 20, 0.08);
}

.list-rank {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: var(--gradient);
}

.list-rank.soft {
  color: var(--coral-dark);
  background: #ffe8e1;
}

.list-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: var(--peach-soft);
}

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

.list-info h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.list-info p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.list-action {
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  font-weight: 800;
  background: var(--gradient);
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 44px auto 0;
  padding: 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 147, 116, 0.26), transparent 24rem),
    linear-gradient(135deg, #ffffff, #fff5f2);
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
}

.inline-actions {
  margin-top: 26px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.6fr));
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--peach-border);
  border-radius: 16px;
  outline: 0;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
}

.empty-state {
  margin: 24px 0 0;
  padding: 24px;
  border: 1px solid var(--peach-border);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #151827;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(21, 24, 39, 0.92), rgba(21, 24, 39, 0.56), rgba(21, 24, 39, 0.28)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) blur(0.5px);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 147, 116, 0.24), transparent 26rem),
    linear-gradient(180deg, transparent 28%, rgba(21, 24, 39, 0.92));
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 70px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: end;
  gap: 42px;
}

.detail-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 3 / 4.2;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.32);
}

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

.detail-poster span {
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 780px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-section,
.player-shell {
  border-radius: 32px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #10131f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.movie-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #05070d;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(21, 24, 39, 0.42), rgba(21, 24, 39, 0.82)),
    var(--hero-image);
  cursor: pointer;
}

.player-shell.is-playing .player-cover,
.player-shell.is-ready .player-cover {
  opacity: 0;
  pointer-events: none;
}

.play-ring {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  color: var(--coral);
  font-size: 30px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.player-cover strong {
  font-size: 26px;
}

.player-cover em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.content-card,
.side-card {
  padding: 26px;
}

.content-card h2,
.side-card h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.detail-side {
  position: sticky;
  top: 96px;
}

.side-list .movie-list-item {
  grid-template-columns: 86px minmax(0, 1fr);
}

.side-list .list-rank,
.side-list .list-action {
  display: none;
}

.side-list .list-cover {
  width: 86px;
}

.side-list .list-info p,
.side-list .list-meta {
  display: none;
}

.next-prev {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.next-prev a {
  color: var(--coral-dark);
  font-weight: 800;
}

.site-footer {
  margin-top: 86px;
  padding: 50px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #2a1010, #4f1a13, #7e2615);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 14px;
  font-size: 22px;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1080px) {
  .category-grid,
  .category-grid.large,
  .movie-grid.four,
  .movie-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

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

  .hot-panel,
  .detail-side {
    position: static;
  }

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

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

  .menu-button {
    display: block;
  }

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

  .hero-slider {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 92px;
  }

  .hero-poster {
    width: min(240px, 72vw);
    margin: 0 auto;
  }

  .intro-strip,
  .section-head,
  .footer-inner,
  .detail-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-inner {
    display: grid;
  }

  .detail-poster {
    width: min(250px, 78vw);
  }

  .movie-grid.two,
  .movie-grid.three,
  .movie-grid.four,
  .category-grid,
  .category-grid.large,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .movie-list-item {
    grid-template-columns: auto 92px minmax(0, 1fr);
  }

  .list-action {
    grid-column: 2 / 4;
  }

  .page-hero {
    padding: 34px 24px;
  }
}

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

  .brand-text {
    font-size: 18px;
  }

  .hero-copy h1,
  .detail-copy h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-copy p,
  .detail-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-control {
    display: none;
  }

  .section-wrap {
    margin: 50px auto;
  }

  .highlight-box,
  .intro-strip,
  .content-card,
  .side-card {
    padding: 22px;
    border-radius: 24px;
  }

  .movie-list-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .list-rank {
    display: none;
  }

  .list-cover {
    width: 76px;
  }

  .list-action {
    grid-column: 1 / 3;
  }

  .next-prev {
    flex-direction: column;
  }
}
