:root {
  --primary-50: #fef6ee;
  --primary-100: #fde9d7;
  --primary-500: #f0641f;
  --primary-600: #e14915;
  --primary-700: #bb3513;
  --secondary-100: #ccfbef;
  --secondary-500: #14b8a6;
  --secondary-700: #0a7763;
  --accent-50: #fff7ed;
  --neutral-50: #fafaf9;
  --neutral-100: #f5f5f4;
  --neutral-200: #e7e5e4;
  --neutral-300: #d6d3d1;
  --neutral-500: #78716c;
  --neutral-600: #57534e;
  --neutral-700: #44403c;
  --neutral-800: #292524;
  --neutral-900: #1c1917;
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-hard: 0 10px 40px -3px rgba(0, 0, 0, 0.15), 0 20px 30px -10px rgba(0, 0, 0, 0.10);
  --radius-xl: 18px;
  --radius-2xl: 26px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--neutral-900);
  background: var(--neutral-50);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--primary-500);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: background 0.25s ease, transform 0.25s ease;
}

.brand:hover .brand-mark {
  background: var(--primary-600);
  transform: translateY(-1px);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: var(--neutral-600);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  color: var(--neutral-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary-500);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-search {
  position: relative;
  width: min(260px, 24vw);
}

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

.site-search-input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 40px;
  color: var(--neutral-800);
  background: var(--neutral-100);
  border: 1px solid transparent;
  border-radius: 999px;
  outline: none;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input:focus {
  background: #fff;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(240, 100, 31, 0.12);
}

.search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  width: min(420px, 86vw);
  max-height: 420px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
}

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

.search-result {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--neutral-100);
}

.search-result strong {
  color: var(--neutral-900);
}

.search-result span {
  color: var(--neutral-500);
  font-size: 13px;
}

.search-empty {
  padding: 18px;
  color: var(--neutral-500);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--neutral-800);
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: #fff;
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-nav a {
  padding: 11px 12px;
  color: var(--neutral-700);
  background: var(--neutral-100);
  border-radius: 12px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-50), #fff 48%, var(--secondary-100));
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(250, 250, 249, 0.98), rgba(250, 250, 249, 0.82), rgba(250, 250, 249, 0.28)), var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding: 72px 0;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--primary-700);
  background: var(--primary-100);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.hero h1,
.hero h2 {
  margin: 20px 0 16px;
  color: var(--neutral-900);
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 0 0 26px;
  color: var(--neutral-700);
  font-size: clamp(16px, 2.2vw, 20px);
}

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

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

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

.btn-primary {
  color: #fff;
  background: var(--primary-500);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--primary-600);
  box-shadow: var(--shadow-hard);
}

.btn-ghost {
  color: var(--neutral-900);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(214, 211, 209, 0.86);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.meta-row span,
.tag-list span,
.detail-chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  color: var(--primary-700);
  background: var(--primary-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.hero-meta span:nth-child(2n),
.meta-row span:nth-child(2n),
.filter-chip:nth-child(2n) {
  color: var(--secondary-700);
  background: var(--secondary-100);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  background: linear-gradient(145deg, var(--neutral-100), var(--primary-100));
  border: 10px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  box-shadow: var(--shadow-hard);
}

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

.hero-poster::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
}

.hero-poster-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
}

.hero-poster-caption strong {
  display: block;
  font-size: 18px;
}

.hero-poster-caption small {
  color: rgba(255, 255, 255, 0.78);
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-dot,
.hero-arrow {
  border: 0;
  cursor: pointer;
}

.hero-dot {
  width: 34px;
  height: 6px;
  padding: 0;
  background: rgba(87, 83, 78, 0.28);
  border-radius: 999px;
}

.hero-dot.active {
  background: var(--primary-500);
}

.hero-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: rgba(28, 25, 23, 0.58);
  border-radius: 999px;
}

.section {
  padding: 68px 0;
}

.section-white {
  background: #fff;
}

.section-soft {
  background: var(--neutral-50);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary-50), #fff 52%, var(--secondary-100));
}

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

.section-heading h2,
.section-heading h1,
.page-title h1,
.detail-title h1 {
  margin: 0;
  color: var(--neutral-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-title p,
.detail-title p {
  margin: 8px 0 0;
  color: var(--neutral-600);
}

.more-link {
  flex: 0 0 auto;
  color: var(--primary-600);
  font-weight: 750;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(240, 100, 31, 0.35);
  box-shadow: var(--shadow-hard);
  transform: translateY(-4px);
}

.movie-card-featured {
  border-radius: var(--radius-2xl);
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
}

.movie-card-featured .poster-frame {
  aspect-ratio: 16 / 9;
}

.poster-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.65), transparent 26%), linear-gradient(135deg, var(--primary-100), var(--secondary-100));
}

.poster-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.image-missing {
  opacity: 0;
}

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent);
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.poster-year {
  top: 12px;
  right: 12px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 36px;
  color: #fff;
  background: var(--primary-500);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.movie-card-featured .card-body {
  padding: 22px;
}

.meta-row,
.tag-list,
.detail-chips,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--neutral-900);
  font-size: 18px;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: color 0.2s ease;
}

.movie-card:hover strong {
  color: var(--primary-600);
}

.movie-card small {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  color: var(--neutral-600);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-list span {
  color: var(--neutral-700);
  background: var(--neutral-100);
}

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

.category-tile {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, rgba(240, 100, 31, 0.94), rgba(20, 184, 166, 0.88)), var(--tile-image);
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  box-shadow: var(--shadow-hard);
  transform: translateY(-3px);
}

.category-tile-main span {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--neutral-900);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.category-tile h2 {
  margin: 16px 0 8px;
  font-size: 30px;
  line-height: 1.1;
}

.category-tile p {
  margin: 0;
  max-width: 34em;
  color: rgba(255, 255, 255, 0.9);
}

.category-samples {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.category-samples a {
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  font-size: 12px;
  backdrop-filter: blur(6px);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.rank-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--primary-500);
  border-radius: 14px;
  font-weight: 850;
}

.rank-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
  border-radius: 14px;
}

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

.rank-info strong {
  display: block;
  color: var(--neutral-900);
  font-size: 18px;
}

.rank-info span,
.rank-info p {
  color: var(--neutral-600);
  font-size: 14px;
}

.rank-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.page-title {
  padding: 54px 0 32px;
  background: linear-gradient(135deg, var(--primary-50), #fff 55%, var(--secondary-100));
}

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

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

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.catalog-search {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  background: var(--neutral-100);
  border: 1px solid transparent;
  border-radius: 999px;
  outline: none;
}

.catalog-search:focus {
  background: #fff;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(240, 100, 31, 0.12);
}

.filter-chip {
  border: 0;
  cursor: pointer;
}

.filter-chip.active {
  color: #fff;
  background: var(--primary-500);
}

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

.index-card {
  display: grid;
  gap: 2px;
  min-height: 78px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border 0.2s ease;
}

.index-card:hover {
  border-color: rgba(240, 100, 31, 0.45);
  transform: translateY(-2px);
}

.index-card span {
  overflow: hidden;
  color: var(--neutral-900);
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-card em {
  overflow: hidden;
  color: var(--neutral-500);
  font-size: 13px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.detail-card,
.side-card,
.player-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
}

.player-card {
  overflow: hidden;
  margin-bottom: 26px;
}

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

.movie-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.10));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-button {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: #fff;
  background: var(--primary-500);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-hard);
}

.player-button svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: currentColor;
  stroke: none;
}

.player-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  color: var(--neutral-700);
}

.detail-card {
  padding: 28px;
}

.detail-title h1 {
  margin-bottom: 10px;
}

.detail-chips {
  margin: 18px 0 24px;
}

.detail-prose h2 {
  margin: 30px 0 12px;
  color: var(--neutral-900);
  font-size: 24px;
}

.detail-prose p {
  margin: 0 0 16px;
  color: var(--neutral-700);
  font-size: 16px;
}

.side-card {
  overflow: hidden;
  padding: 18px;
}

.side-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.side-cover {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
  border-radius: 18px;
}

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

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

.side-list a {
  display: grid;
  gap: 2px;
  padding: 10px;
  background: var(--neutral-50);
  border-radius: 14px;
}

.side-list strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-list span {
  color: var(--neutral-500);
  font-size: 13px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 20px;
}

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

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--primary-500);
}

.footer-bottom {
  padding: 18px 0;
  color: var(--neutral-500);
  border-top: 1px solid var(--neutral-800);
}

@media (max-width: 1100px) {
  .movie-grid,
  .index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .header-inner {
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .header-search {
    flex: 1 1 auto;
    width: auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 52px 0 76px;
  }

  .hero-poster {
    min-height: 320px;
  }

  .hero-poster img {
    min-height: 320px;
  }

  .section-heading,
  .catalog-toolbar,
  .player-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-toolbar {
    display: flex;
  }
}

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

  .brand-text em,
  .header-search {
    display: none;
  }

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

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

  .rank-row .btn {
    grid-column: 2 / -1;
  }

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

  .detail-card {
    padding: 20px;
  }
}
