:root {
  --stone-50: #faf9f7;
  --stone-100: #f5f3f0;
  --stone-200: #e5e1da;
  --stone-300: #d1cac0;
  --stone-500: #8f8376;
  --stone-600: #6f665d;
  --stone-800: #5c534c;
  --stone-900: #4c4740;
  --earth-50: #faf8f5;
  --earth-100: #f2ede4;
  --earth-200: #e8dcc8;
  --earth-300: #dbc5a3;
  --earth-500: #b88d55;
  --earth-600: #a47549;
  --earth-700: #8a5f3e;
  --earth-900: #5a4029;
  --canyon-50: #fdf6f3;
  --canyon-100: #fae8df;
  --canyon-500: #d96840;
  --canyon-600: #c44e2c;
  --canyon-700: #a33f25;
  --canyon-900: #6e3021;
  --moss-50: #f6f7f4;
  --moss-600: #61704a;
  --moss-900: #363e2d;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(76, 71, 64, 0.08);
  --shadow-md: 0 10px 25px rgba(76, 71, 64, 0.12);
  --shadow-xl: 0 24px 45px rgba(76, 71, 64, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--stone-900);
  background: var(--stone-50);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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(250, 249, 247, 0.94);
  border-bottom: 1px solid var(--stone-200);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand {
  font-size: 20px;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--earth-600), var(--canyon-600));
  border-radius: 11px;
  box-shadow: 0 10px 20px rgba(164, 117, 73, 0.25);
}

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

.nav-link {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--stone-700, #635a52);
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--earth-700);
  background: var(--stone-100);
}

.top-search,
.mobile-search {
  position: relative;
}

.top-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--stone-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--stone-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone-500);
}

.top-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--earth-500);
  box-shadow: 0 0 0 4px rgba(184, 141, 85, 0.15);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--stone-100);
  color: var(--stone-900);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 16px;
  border-top: 1px solid var(--stone-200);
  background: var(--white);
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--stone-900);
  font-weight: 650;
}

.mobile-link:hover {
  background: var(--stone-100);
  color: var(--earth-700);
}

.mobile-search input {
  padding: 11px 14px;
}

.hero {
  position: relative;
  min-height: 540px;
  height: 72vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-900), var(--stone-900), var(--canyon-900));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

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

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.05) contrast(1.05);
}

.hero-layer,
.detail-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(54, 45, 36, 0.94), rgba(76, 71, 64, 0.70) 48%, rgba(110, 48, 33, 0.72)), linear-gradient(0deg, rgba(76, 71, 64, 0.90), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--earth-300);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero h1,
.hero h2,
.sub-hero h1,
.detail-hero h1 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 66px);
  letter-spacing: -0.06em;
}

.hero h2 {
  margin-top: 14px;
  color: var(--earth-300);
  font-size: clamp(28px, 4vw, 48px);
}

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

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--earth-100);
  font-size: 13px;
  font-weight: 700;
}

.detail-tags span {
  color: var(--earth-700);
  background: var(--earth-100);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--earth-600);
  box-shadow: 0 14px 28px rgba(164, 117, 73, 0.28);
}

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

.btn-glass,
.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-outline:hover,
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.20);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3 / 4;
  background: var(--stone-800);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: var(--earth-700);
  background: rgba(255, 255, 255, 0.92);
  font-size: 26px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 32px;
  background: var(--earth-300);
}

.page-section {
  padding: 70px 0;
  background: var(--white);
}

.soft-bg {
  background: var(--stone-50);
}

.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,
.category-overview-card h2,
.ranking-card h2 {
  margin: 0 0 8px;
  color: var(--stone-900);
  line-height: 1.2;
}

.section-heading h2,
.ranking-title h2 {
  font-size: 32px;
}

.section-heading p,
.content-card p,
.category-overview-card p,
.ranking-card p {
  margin: 0;
  color: var(--stone-600);
}

.section-more,
.text-link,
.ranking-title a,
.card-meta a,
.detail-sidebar a {
  color: var(--earth-700);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--stone-200);
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s ease;
}

.poster-overlay span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--earth-700);
  background: rgba(255, 255, 255, 0.92);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.movie-card:hover .poster-overlay {
  background: rgba(0, 0, 0, 0.38);
}

.movie-card:hover .poster-overlay span {
  transform: scale(1);
}

.year-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--stone-900);
  line-height: 1.35;
  font-size: 17px;
}

.movie-card h3 a:hover {
  color: var(--earth-700);
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--stone-600);
  font-size: 14px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--stone-500);
  font-size: 13px;
}

.card-meta a {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--stone-100);
  white-space: nowrap;
}

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

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 18px;
  padding: 20px;
  color: var(--white);
  background: var(--stone-900);
  box-shadow: var(--shadow-sm);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  transition: transform 0.25s ease;
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(76, 71, 64, 0.90), rgba(90, 64, 41, 0.35));
}

.category-card span,
.category-card strong,
.category-card p {
  position: relative;
  z-index: 1;
  display: block;
}

.category-card span {
  color: var(--earth-300);
  font-weight: 800;
}

.category-card strong {
  margin-top: 68px;
  font-size: 21px;
  line-height: 1.25;
}

.category-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.ranking-panel,
.content-card,
.player-card,
.category-overview-card,
.ranking-card {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ranking-panel {
  position: sticky;
  top: 90px;
  padding: 22px;
}

.ranking-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 40px 64px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--stone-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.rank-num {
  color: var(--earth-700);
  font-weight: 900;
}

.rank-row img {
  width: 64px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-main {
  min-width: 0;
}

.rank-main strong,
.rank-main em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-main em {
  color: var(--stone-500);
  font-size: 12px;
  font-style: normal;
}

.rank-play {
  color: var(--earth-600);
}

.sub-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--earth-900), var(--stone-900), var(--canyon-900));
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
}

.sub-hero .container,
.detail-hero-inner {
  position: relative;
  z-index: 1;
}

.crumb {
  margin: 0 0 14px;
  color: var(--earth-300);
  font-weight: 700;
}

.crumb a:hover {
  color: var(--white);
}

.sub-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
}

.sub-hero p:last-child {
  max-width: 780px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 190px 220px;
  gap: 14px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 18px;
  background: var(--stone-50);
  box-shadow: var(--shadow-sm);
}

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

.filter-bar input,
.filter-bar select {
  height: 46px;
  padding: 0 13px;
}

.empty-state {
  padding: 26px;
  border-radius: 16px;
  text-align: center;
  color: var(--stone-600);
  background: var(--stone-50);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
}

.category-cover {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  background: var(--stone-200);
}

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

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.category-samples a {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--earth-700);
  background: var(--earth-100);
  font-size: 13px;
  font-weight: 800;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.ranking-poster {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  background: var(--stone-200);
}

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

.ranking-poster span {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--white);
  background: var(--earth-600);
  font-weight: 900;
}

.ranking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: var(--stone-500);
  font-size: 13px;
}

.ranking-meta span,
.ranking-meta a {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--stone-100);
}

.search-page-form {
  display: flex;
  gap: 12px;
  max-width: 680px;
  margin-top: 24px;
}

.search-page-form input {
  min-height: 50px;
  padding: 0 16px;
}

.search-page-form button {
  min-width: 110px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--earth-600);
  font-weight: 800;
  cursor: pointer;
}

.detail-hero {
  min-height: 620px;
  padding: 58px 0;
}

.detail-intro {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-top: 28px;
}

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-xl);
  background: var(--stone-800);
}

.detail-hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(34px, 6vw, 66px);
  letter-spacing: -0.04em;
}

.detail-meta-line,
.detail-one-line {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
}

.detail-meta-line {
  margin: 14px 0;
  color: var(--earth-300);
  font-weight: 800;
}

.detail-one-line {
  margin: 0 0 20px;
  font-size: 18px;
}

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

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

.player-card {
  overflow: hidden;
  padding: 0;
  background: #000000;
}

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

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-cover-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--earth-700);
  background: rgba(255, 255, 255, 0.94);
  font-size: 28px;
  box-shadow: var(--shadow-xl);
}

.player-cover-title {
  font-size: 20px;
  font-weight: 900;
}

.content-card {
  padding: 26px;
}

.content-card h2 {
  margin-top: 0;
  font-size: 24px;
}

.content-card p {
  margin-bottom: 20px;
  color: var(--stone-700, #635a52);
  font-size: 16px;
  line-height: 1.9;
}

.small-heading {
  margin-bottom: 22px;
}

.detail-sidebar {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 18px;
}

.side-info dl {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.side-info dt {
  color: var(--stone-500);
  font-weight: 800;
}

.side-info dd {
  margin: 0;
  color: var(--stone-900);
}

.site-footer {
  color: var(--stone-300);
  background: var(--stone-900);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 20px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer p,
.site-footer ul {
  margin: 0;
  color: var(--stone-300);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--earth-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-800);
}

.footer-bottom button {
  border: 0;
  color: var(--stone-300);
  background: transparent;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .desktop-nav .nav-link:nth-last-child(-n+4) {
    display: none;
  }

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

@media (max-width: 960px) {
  .desktop-nav,
  .top-search {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: center;
  }

  .hero-poster {
    display: none;
  }

  .movie-grid,
  .movie-grid.three-cols,
  .movie-grid.two-cols,
  .category-grid,
  .ranking-grid,
  .category-overview-grid,
  .split-layout,
  .detail-layout {
    grid-template-columns: 1fr 1fr;
  }

  .ranking-panel,
  .detail-sidebar {
    position: static;
  }

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

  .detail-intro {
    grid-template-columns: 200px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    height: 62px;
  }

  .brand {
    font-size: 18px;
  }

  .hero {
    min-height: 620px;
    height: auto;
  }

  .hero-content {
    padding: 72px 0 82px;
  }

  .hero-actions,
  .search-page-form,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .search-page-form button {
    width: 100%;
  }

  .section-heading {
    display: block;
  }

  .section-more {
    display: inline-block;
    margin-top: 12px;
  }

  .page-section {
    padding: 48px 0;
  }

  .movie-grid,
  .movie-grid.three-cols,
  .movie-grid.two-cols,
  .category-grid,
  .ranking-grid,
  .category-overview-grid,
  .split-layout,
  .detail-layout,
  .footer-grid,
  .filter-bar,
  .ranking-card,
  .category-overview-card,
  .detail-intro {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    width: 210px;
  }

  .ranking-card,
  .category-overview-card {
    padding: 14px;
  }

  .sub-hero,
  .detail-hero {
    padding: 48px 0;
  }
}
