:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --secondary: #b45309;
  --accent: #dc2626;
  --neutral-50: #fafaf9;
  --neutral-100: #f5f5f4;
  --neutral-200: #e7e5e4;
  --neutral-300: #d6d3d1;
  --neutral-500: #78716c;
  --neutral-600: #57534e;
  --neutral-700: #44403c;
  --neutral-900: #1c1917;
  --shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--neutral-900);
  background: var(--neutral-50);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 19px;
}

.logo-text em {
  margin-top: 3px;
  color: var(--neutral-500);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--neutral-600);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--neutral-900);
  background: var(--neutral-100);
  transform: translateY(-1px);
}

.nav-search,
.mobile-search,
.home-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.home-search input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  color: var(--neutral-900);
  background: #fff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input,
.mobile-search input,
.home-search input {
  width: 240px;
  padding: 10px 14px;
}

.nav-search input:focus,
.mobile-search input:focus,
.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.nav-search button,
.mobile-search button,
.home-search button,
.btn,
.player-overlay {
  border: 0;
  cursor: pointer;
}

.nav-search button,
.mobile-search button,
.home-search button {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: var(--primary);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 10px;
  background: var(--neutral-100);
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--neutral-700);
}

.mobile-panel {
  display: none;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--neutral-200);
  background: #fff;
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--neutral-50);
  color: var(--neutral-700);
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 430px;
  height: 60vh;
  max-height: 640px;
  overflow: hidden;
  background: var(--neutral-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18)), linear-gradient(0deg, rgba(28, 25, 23, 0.86), rgba(28, 25, 23, 0.08));
}

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

.hero-copy {
  max-width: 720px;
  color: #fff;
  animation: slideUp 0.6s ease;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(2, 132, 199, 0.34);
  border: 1px solid rgba(186, 230, 253, 0.32);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-tags span,
.detail-chips span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

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

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

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

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.28);
}

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

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

.hero-card {
  align-self: stretch;
  min-height: 330px;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

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

.hero-card:hover img {
  transform: scale(1.05);
}

.hero-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.hero-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.32);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.home-search-wrap,
.page-main,
.detail-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-search-card {
  margin-top: -44px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.home-search-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.home-search-card p {
  margin: 0;
  color: var(--neutral-600);
  line-height: 1.7;
}

.home-search input {
  width: 100%;
  padding: 13px 18px;
}

.home-search button {
  padding: 13px 22px;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}

.section-icon {
  color: var(--primary);
  font-weight: 900;
}

.section-more {
  color: var(--primary);
  font-weight: 800;
}

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

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

.six-cols {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scroll-row .movie-card {
  width: 230px;
  flex: 0 0 230px;
}

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--neutral-200);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.0) 45%);
}

.rank-badge,
.score-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  left: 10px;
  top: 10px;
  background: var(--accent);
}

.score-badge {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.64);
}

.movie-card-body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.movie-card-body strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 900;
}

.movie-meta,
.movie-genre,
.tag-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--neutral-500);
  font-size: 13px;
}

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

.tag-line {
  color: var(--secondary);
  font-weight: 700;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  border-radius: 14px;
}

.movie-card-wide .movie-poster {
  aspect-ratio: 2 / 3;
}

.movie-card-wide .movie-card-body {
  align-content: center;
}

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

.movie-list-compact {
  display: grid;
  gap: 14px;
}

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 18px;
}

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

.category-card,
.category-overview-card {
  display: block;
  min-height: 130px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f0f9ff);
  border: 1px solid var(--neutral-200);
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-card span,
.category-overview-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--neutral-600);
  line-height: 1.7;
}

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

.category-overview-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-overview-card div span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #e0f2fe;
  font-size: 13px;
  font-weight: 700;
}

.page-main {
  padding-top: 34px;
  padding-bottom: 70px;
}

.page-hero {
  padding: 52px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow);
}

.soft-hero {
  background: linear-gradient(135deg, var(--neutral-900), #44403c);
}

.rank-hero {
  background: linear-gradient(135deg, var(--accent), #7f1d1d);
}

.category-hero {
  background: linear-gradient(135deg, var(--secondary), #78350f);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 210px));
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.05);
}

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

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 12px;
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 36px;
  border-radius: 18px;
  color: var(--neutral-600);
  text-align: center;
  background: #fff;
}

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

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
}

.rank-list,
.rank-side,
.sidebar-card,
.detail-card,
.player-card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.06);
}

.rank-list {
  overflow: hidden;
}

.rank-row {
  display: grid;
  grid-template-columns: 54px 72px minmax(0, 1fr) 60px;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--neutral-200);
}

.rank-row:hover {
  background: var(--neutral-50);
}

.rank-row img {
  width: 72px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--neutral-200);
}

.rank-number {
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.rank-info strong,
.rank-info em,
.rank-info small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info strong {
  font-size: 18px;
  font-weight: 900;
}

.rank-info em {
  color: var(--neutral-600);
  font-style: normal;
}

.rank-info small {
  color: var(--neutral-500);
}

.rank-score {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.rank-side {
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 96px;
}

.rank-side h2,
.sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 21px;
  font-weight: 900;
}

.rank-side .movie-card-wide + .movie-card-wide {
  margin-top: 12px;
}

.detail-main {
  padding-top: 26px;
  padding-bottom: 74px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--neutral-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 700;
}

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

.detail-content {
  display: grid;
  gap: 22px;
}

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

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  overflow: hidden;
  background: #000;
}

.player-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.44);
  font-size: 30px;
  text-indent: 4px;
}

.player-overlay span:last-child {
  font-size: 18px;
  font-weight: 900;
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}

.detail-chips,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.detail-chips span {
  padding: 7px 12px;
  color: var(--primary-dark);
  background: #e0f2fe;
}

.detail-tags span {
  padding: 7px 11px;
  color: #92400e;
  background: #fef3c7;
}

.lead-text {
  margin: 0 0 24px;
  color: var(--neutral-700);
  font-size: 18px;
  line-height: 1.8;
}

.detail-card h2 {
  margin: 26px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
  font-size: 23px;
  font-weight: 900;
}

.detail-card p {
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 1.92;
}

.sidebar-card {
  padding: 20px;
  position: sticky;
  top: 96px;
}

.side-related {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.side-related:last-child {
  border-bottom: 0;
}

.side-related img {
  width: 72px;
  height: 104px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--neutral-200);
}

.side-related span {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.side-related strong,
.side-related em {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.side-related strong {
  color: var(--neutral-900);
  font-weight: 900;
  -webkit-line-clamp: 2;
}

.side-related em {
  color: var(--neutral-500);
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 1;
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

.site-footer {
  margin-top: 48px;
  color: #d6d3d1;
  background: var(--neutral-900);
}

.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(180px, 0.5fr));
  gap: 34px;
}

.footer-logo .logo-mark {
  background: var(--primary);
}

.footer-logo .logo-text strong {
  color: #fff;
}

.footer-brand p {
  max-width: 560px;
  color: #a8a29e;
  line-height: 1.8;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}

.footer-col a {
  color: #a8a29e;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

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

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-button {
    display: flex;
    margin-left: auto;
  }

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

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

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

  .filter-panel,
  .detail-layout,
  .rank-layout {
    grid-template-columns: 1fr;
  }

  .rank-side,
  .sidebar-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-wrap,
  .home-search-wrap,
  .page-main,
  .detail-main,
  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-text em {
    display: none;
  }

  .hero-carousel {
    min-height: 560px;
    height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 70px 0 80px;
  }

  .hero-card {
    min-height: 260px;
    max-width: 210px;
  }

  .hero-control {
    display: none;
  }

  .home-search-card {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 20px;
  }

  .home-search,
  .mobile-search {
    align-items: stretch;
    flex-direction: column;
  }

  .home-search input,
  .mobile-search input,
  .home-search button,
  .mobile-search button {
    width: 100%;
  }

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

  .four-cols,
  .six-cols,
  .category-grid,
  .category-overview-grid,
  .split-section,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .movie-grid {
    gap: 16px;
  }

  .movie-card:not(.movie-card-wide) {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .movie-card:not(.movie-card-wide) .movie-poster {
    height: 176px;
  }

  .movie-card:not(.movie-card-wide) .movie-card-body p {
    -webkit-line-clamp: 3;
  }

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

  .page-hero h1 {
    font-size: 34px;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 40px 64px minmax(0, 1fr);
  }

  .rank-row img {
    width: 64px;
    height: 90px;
  }

  .rank-score {
    grid-column: 3;
    text-align: left;
  }

  .detail-card {
    padding: 22px;
  }

  .player-shell {
    min-height: 220px;
  }
}
