:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgb(15 23 42 / 0.12);
  --shadow-md: 0 10px 25px rgb(15 23 42 / 0.12);
  --shadow-xl: 0 20px 45px rgb(15 23 42 / 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--red-600));
  box-shadow: var(--shadow-md);
}

.header-inner {
  min-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;
  letter-spacing: 0.02em;
}

.brand-name {
  font-size: 1.55rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--orange-600);
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 0.35);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark,
.footer-brand:hover .brand-mark {
  transform: scale(1.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.nav-link {
  position: relative;
  color: rgb(255 255 255 / 0.92);
  transition: color 0.2s ease;
}

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

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

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgb(255 255 255 / 0.12);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgb(255 255 255 / 0.92);
}

.mobile-link:hover,
.mobile-link.active {
  background: rgb(255 255 255 / 0.12);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #7c2d12, #7f1d1d);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgb(249 115 22 / 0.35), transparent 28%),
    linear-gradient(to top, rgb(0 0 0 / 0.92), rgb(0 0 0 / 0.52), rgb(0 0 0 / 0.2));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 76px;
  max-width: 1200px;
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  padding: 5px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 780px;
  margin: 18px 0 12px;
  font-size: clamp(2.35rem, 6vw, 4.7rem);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 12px 30px rgb(0 0 0 / 0.4);
}

.hero p {
  max-width: 740px;
  margin: 0 0 22px;
  color: rgb(255 255 255 / 0.9);
  font-size: 1.18rem;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}

.hero-meta {
  color: rgb(255 255 255 / 0.82);
  margin-bottom: 24px;
}

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

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

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

.btn-primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 14px 30px rgb(234 88 12 / 0.35);
}

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

.btn-ghost {
  color: var(--white);
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.22);
  backdrop-filter: blur(12px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgb(255 255 255 / 0.18);
  backdrop-filter: blur(10px);
  font-size: 2.2rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgb(255 255 255 / 0.28);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.5);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.section {
  padding: 64px 0;
}

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

.section-white {
  background: var(--white);
}

.section-blue {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
}

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

.compact-head {
  margin-bottom: 20px;
}

.section-head h2,
.page-hero h1,
.detail-info h1,
.content-panel h2,
.player-panel h2 {
  margin: 10px 0 8px;
  color: var(--gray-800);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.15;
  font-weight: 900;
}

.section-head p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--gray-500);
}

.section-head-invert h2,
.section-head-invert p {
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--orange-600);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 6px;
}

.text-link-light {
  color: var(--white);
}

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

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

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

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

.movie-card {
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-100), var(--gray-200));
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgb(0 0 0 / 0.74), transparent);
  pointer-events: none;
}

.poster-badge,
.poster-score {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.poster-badge {
  left: 10px;
  top: 10px;
  color: var(--white);
  background: var(--red-600);
}

.poster-score {
  right: 10px;
  bottom: 10px;
  color: #facc15;
  background: rgb(0 0 0 / 0.78);
}

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

.movie-card h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--orange-600);
}

.movie-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.card-meta span:not(:last-child)::after {
  content: "";
}

.horizontal-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

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

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

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

.category-card a {
  display: block;
  height: 100%;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 150px;
  background: linear-gradient(135deg, var(--orange-100), var(--gray-100));
}

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

.category-card div:last-child {
  padding: 18px;
}

.category-card h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 1.15rem;
  font-weight: 900;
}

.category-card p {
  display: -webkit-box;
  margin: 0;
  color: var(--gray-500);
  font-size: 0.92rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.rank-card a {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gray-900);
  box-shadow: var(--shadow-sm);
}

.rank-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.rank-card a:hover img {
  transform: scale(1.08);
  opacity: 0.52;
}

.rank-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.85), transparent 70%);
}

.rank-no,
.rank-title,
.rank-score {
  position: relative;
  z-index: 1;
}

.rank-no {
  margin: 14px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--red-600);
  font-weight: 900;
}

.rank-title {
  align-self: end;
  padding: 0 14px 8px;
  font-weight: 900;
}

.rank-score {
  padding: 0 14px 16px;
  color: #facc15;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--gray-500);
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgb(249 115 22 / 0.14);
}

.no-results {
  padding: 28px;
  text-align: center;
  color: var(--gray-500);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.page-hero {
  padding: 84px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 10%, rgb(249 115 22 / 0.42), transparent 26%),
    linear-gradient(135deg, #7c2d12, #991b1b 54%, #111827);
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.overview-stack {
  display: grid;
  gap: 34px;
}

.category-overview-block {
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ranking-list {
  display: grid;
  gap: 12px;
}

.ranking-row {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ranking-row a {
  display: grid;
  grid-template-columns: 68px 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
}

.ranking-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-600), var(--red-600));
  font-weight: 900;
}

.ranking-row img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-100);
}

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

.ranking-main strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-800);
  font-size: 1.06rem;
}

.ranking-main em {
  display: block;
  color: var(--gray-500);
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-meta {
  color: var(--gray-500);
  font-weight: 700;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  filter: blur(2px);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgb(249 115 22 / 0.4), transparent 26%),
    linear-gradient(90deg, rgb(17 24 39 / 0.96), rgb(17 24 39 / 0.8), rgb(17 24 39 / 0.7));
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 34px 0 56px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgb(255 255 255 / 0.8);
  font-size: 0.92rem;
}

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

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

.detail-poster {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  background: var(--gray-800);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info h1 {
  margin: 12px 0;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.detail-one-line {
  max-width: 830px;
  margin: 0 0 18px;
  color: rgb(255 255 255 / 0.88);
  font-size: 1.12rem;
}

.detail-meta {
  margin-bottom: 18px;
  color: rgb(255 255 255 / 0.8);
}

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

.tag-list span {
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgb(255 255 255 / 0.14);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

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

.player-panel,
.content-panel {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.player-panel {
  padding: 20px;
}

.content-panel {
  padding: 28px;
}

.player-panel h2,
.content-panel h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #030712;
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030712;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(to top, rgb(0 0 0 / 0.52), rgb(0 0 0 / 0.18));
  transition: opacity 0.25s ease;
}

.play-overlay span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 5px;
  font-size: 2rem;
  background: var(--orange-600);
  box-shadow: 0 16px 40px rgb(234 88 12 / 0.38);
  transition: transform 0.25s ease, background 0.25s ease;
}

.play-overlay:hover span {
  transform: scale(1.08);
  background: var(--orange-700);
}

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

.content-panel p {
  color: var(--gray-700);
  margin: 0 0 22px;
}

.info-table {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.info-table div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
}

.info-table span {
  color: var(--gray-500);
}

.info-table strong {
  color: var(--gray-800);
}

.site-footer {
  color: rgb(255 255 255 / 0.76);
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px 0;
}

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

.footer-brand .brand-mark {
  color: var(--white);
  background: var(--orange-600);
}

.site-footer p {
  margin: 0;
  max-width: 340px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

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

.site-footer a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  text-align: center;
  color: rgb(255 255 255 / 0.55);
}

[hidden],
.is-filtered-out {
  display: none !important;
}

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

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

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

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

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

  .mobile-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 0 16px 64px;
  }

  .hero-control {
    display: none;
  }

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

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

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

  .detail-poster {
    width: min(280px, 100%);
  }

  .ranking-row a {
    grid-template-columns: 48px 64px minmax(0, 1fr);
  }

  .ranking-meta {
    grid-column: 3;
  }
}

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

  .brand-name {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 520px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .small-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 44px 0;
  }

  .movie-grid,
  .movie-grid-hot,
  .movie-grid-compact,
  .all-movie-grid,
  .category-grid,
  .rank-strip {
    grid-template-columns: 1fr;
  }

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

  .horizontal-scroll .movie-card {
    flex-basis: 230px;
  }

  .category-covers img {
    height: 130px;
  }

  .ranking-row a {
    grid-template-columns: 42px 58px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .ranking-number {
    width: 38px;
    height: 38px;
  }

  .ranking-row img {
    width: 58px;
    height: 78px;
  }

  .ranking-main em,
  .ranking-meta {
    font-size: 0.84rem;
  }
}
