:root {
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --emerald-600: #059669;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.08);
  --shadow-md: 0 8px 18px rgb(15 23 42 / 0.08);
  --shadow-lg: 0 18px 35px rgb(15 23 42 / 0.14);
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --max-width: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 2rem, var(--max-width));
  min-height: 4rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cyan-700);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-600), var(--teal-600), var(--emerald-600));
  box-shadow: 0 10px 18px rgb(8 145 178 / 0.24);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 0.65rem;
  color: var(--gray-700);
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: var(--cyan-600);
}

.mobile-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.65rem;
  color: var(--gray-700);
  background: var(--gray-100);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 0 0 1rem;
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.35rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-600), var(--teal-600) 54%, var(--emerald-600));
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(6px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -24% -10%;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  background: rgba(207, 250, 254, 0.16);
  filter: blur(12px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--cyan-100);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  color: var(--cyan-100);
}

.hero-text {
  max-width: 42rem;
  margin: 0 0 1.75rem;
  color: rgba(236, 254, 255, 0.96);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: var(--cyan-700);
  background: var(--white);
  box-shadow: 0 14px 30px rgb(15 23 42 / 0.12);
}

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

.btn-outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
}

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

.hero-search {
  max-width: 36rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-search input {
  width: 100%;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 0.7rem;
  color: var(--gray-900);
  outline: none;
}

.hero-slider {
  position: relative;
  min-height: 31rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(2rem) scale(0.98);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

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

.hero-feature-card {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.2rem;
  box-shadow: 0 30px 65px rgb(15 23 42 / 0.28);
  background: rgba(15, 23, 42, 0.18);
}

.hero-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.86));
}

.hero-feature-info {
  position: absolute;
  z-index: 1;
  inset: auto 1.3rem 1.3rem;
}

.hero-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  color: var(--cyan-700);
  background: var(--cyan-50);
  font-size: 0.8rem;
  font-weight: 800;
}

.pill.dark {
  color: var(--white);
  background: rgba(8, 145, 178, 0.85);
}

.hero-feature-info h2 {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.hero-feature-info p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 1.2rem;
  top: 1.2rem;
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 1.6rem;
  background: var(--white);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 1.35rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stat-number {
  color: var(--cyan-700);
  font-size: 2rem;
  font-weight: 900;
}

.stat-label {
  margin-top: 0.3rem;
  color: var(--gray-600);
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--gray-50);
}

.section.soft {
  background: linear-gradient(135deg, var(--cyan-50), #f0fdfa);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0.5rem 0 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.view-more {
  color: var(--cyan-700);
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

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

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

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

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

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

.category-card,
.movie-card,
.panel,
.rank-card,
.related-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.category-card {
  display: block;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.category-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-600), var(--teal-600));
  font-size: 1.35rem;
}

.category-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.category-card p {
  margin: 0 0 0.8rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.category-count {
  color: var(--cyan-700);
  font-weight: 800;
}

.movie-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.poster-wrap {
  position: relative;
  height: 13.2rem;
  overflow: hidden;
  background: var(--gray-100);
}

.poster-wrap.tall {
  height: 15rem;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

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

.year-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--cyan-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.rank-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-weight: 900;
}

.card-body {
  flex: 1;
  padding: 1.15rem;
}

.card-meta {
  margin-bottom: 0.45rem;
  color: var(--cyan-700);
  font-size: 0.88rem;
  font-weight: 800;
}

.card-title {
  margin: 0 0 0.55rem;
  color: var(--gray-800);
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 800;
}

.card-desc {
  margin: 0 0 0.8rem;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.watch-link {
  color: var(--cyan-700);
  font-size: 0.92rem;
  font-weight: 800;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-600), var(--teal-600), var(--emerald-600));
}

.page-hero-inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 3.2rem 0;
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 48rem;
  margin: 0;
  color: var(--cyan-100);
  line-height: 1.75;
  font-size: 1.1rem;
}

.search-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.search-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.75rem;
  color: var(--gray-900);
  outline: none;
}

.search-input:focus {
  border-color: var(--cyan-600);
  box-shadow: 0 0 0 3px rgb(8 145 178 / 0.16);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-button {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-50);
  cursor: pointer;
  font-weight: 700;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--white);
  border-color: var(--cyan-600);
  background: var(--cyan-600);
}

.result-meta {
  margin: 0 0 1.2rem;
  color: var(--gray-600);
}

.result-meta strong {
  color: var(--gray-800);
}

.empty-state {
  padding: 4rem 1rem;
  color: var(--gray-500);
  text-align: center;
}

.rank-list {
  display: grid;
  gap: 1rem;
}

.rank-row {
  display: grid;
  grid-template-columns: 4rem 7rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rank-number {
  color: var(--cyan-700);
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}

.rank-cover {
  width: 7rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--gray-100);
}

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

.rank-info h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.rank-info p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.panel {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 0.92rem;
}

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

.player-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.35));
  cursor: pointer;
  transition: opacity 180ms ease;
}

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

.play-circle {
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cyan-600);
  box-shadow: 0 22px 38px rgb(8 145 178 / 0.32);
}

.play-triangle {
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-top: 0.9rem solid transparent;
  border-bottom: 0.9rem solid transparent;
  border-left: 1.35rem solid var(--white);
}

.detail-body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.detail-title {
  margin: 0 0 1rem;
  color: var(--gray-800);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.2;
  font-weight: 900;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.2rem;
  color: var(--gray-600);
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--cyan-700);
  background: var(--cyan-50);
  font-size: 0.9rem;
  font-weight: 700;
}

.content-block {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.content-block h2 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

.lead {
  color: var(--cyan-700);
  font-weight: 800;
}

.content-block p {
  color: var(--gray-700);
  line-height: 1.9;
}

.related-card {
  display: block;
  overflow: hidden;
  border-radius: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.related-card .poster-wrap {
  height: 9rem;
}

.related-card h3 {
  margin: 0;
  padding: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.feature-box {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  border-radius: 999px;
  background: var(--cyan-600);
  font-size: 1.6rem;
}

.feature-box:nth-child(2) .feature-icon {
  background: var(--teal-600);
}

.feature-box:nth-child(3) .feature-icon {
  background: var(--emerald-600);
}

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

.footer-inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 3rem 0;
}

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

.footer-title {
  margin: 0 0 1rem;
  color: var(--white);
  font-weight: 800;
}

.footer-inner p,
.footer-inner li {
  color: #9ca3af;
  line-height: 1.8;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-list a:hover {
  color: #67e8f9;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1f2937;
  text-align: center;
  color: #9ca3af;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--cyan-600);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 3.2rem;
  }

  .hero-slider,
  .hero-feature-card {
    min-height: 25rem;
  }

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

  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-row {
    grid-template-columns: 3rem 6rem 1fr;
  }

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

@media (max-width: 640px) {
  .container,
  .header-inner,
  .mobile-nav,
  .hero-inner,
  .page-hero-inner,
  .footer-inner {
    width: min(100% - 1rem, var(--max-width));
  }

  .logo span:last-child {
    max-width: 8rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-actions,
  .hero-search,
  .search-row {
    grid-template-columns: 1fr;
  }

  .hero-search {
    display: grid;
  }

  .hero-slider,
  .hero-feature-card {
    min-height: 22rem;
  }

  .hero-stat-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .poster-wrap {
    height: 15rem;
  }

  .rank-row {
    grid-template-columns: 2.7rem 5.5rem 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .rank-cover {
    width: 5.5rem;
    height: 4rem;
  }

  .detail-body {
    padding: 1rem;
  }
}
