:root {
  --color-primary: #dc2626;
  --color-primary-dark: #b91c1c;
  --color-pink: #db2777;
  --color-blue: #2563eb;
  --color-purple: #7c3aed;
  --color-bg: #f8fafc;
  --color-panel: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-soft: #f3f4f6;
  --color-line: #e5e7eb;
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.24);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
}

.navbar {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
}

.nav-link {
  transition: color 0.2s ease;
}

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

.nav-link-highlight {
  padding: 9px 16px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 999px;
}

.nav-link-highlight:hover {
  color: #ffffff;
  background: var(--color-primary-dark);
}

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

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 10px;
}

.mobile-menu {
  display: none;
  padding: 10px 24px 22px;
  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

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

.mobile-link {
  padding: 10px 0;
  color: #374151;
  font-weight: 700;
}

main,
.page-main {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  min-height: 520px;
  margin: 32px auto 42px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-slide.is-active {
  display: block;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 22%, rgba(220, 38, 38, 0.35), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 48%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 76px);
  bottom: clamp(86px, 12vw, 132px);
  max-width: 680px;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.92);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 600px;
  margin: 0 0 28px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 12px 22px rgba(220, 38, 38, 0.28);
}

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

.button.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.hero-search {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 76px;
  z-index: 2;
  width: min(420px, calc(100% - 36px));
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 16px 18px;
  color: #ffffff;
  background: transparent;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.hero-search button {
  border: 0;
  padding: 0 20px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 900;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 42px;
}

.stats-strip div {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.stats-strip strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--color-primary);
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-weight: 700;
}

.section-block {
  margin-bottom: 48px;
}

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

.section-heading p {
  margin: 0 0 4px;
  color: var(--color-muted);
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.section-heading.light,
.section-heading.light a,
.gradient-block .movie-card,
.movie-card.light {
  color: #ffffff;
}

.gradient-block {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--color-blue), var(--color-purple));
  box-shadow: var(--shadow-card);
}

.gradient-block.red {
  background: linear-gradient(120deg, var(--color-pink), var(--color-primary));
}

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

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

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

.movie-grid.listing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
}

.movie-card.light {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

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

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

.poster-badge,
.poster-duration {
  position: absolute;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.poster-badge {
  top: 10px;
  left: 10px;
  color: #ffffff;
  background: var(--color-primary);
}

.poster-duration {
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.74);
}

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 46px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.24s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
}

.movie-card-body {
  display: block;
  padding: 14px;
}

.movie-card-body strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  font-size: 15px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-line {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card.light .movie-line {
  color: rgba(255, 255, 255, 0.78);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
}

.movie-card.light .card-meta {
  color: rgba(255, 255, 255, 0.9);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.card-tags span {
  padding: 3px 7px;
  border-radius: 999px;
  color: #6b7280;
  background: #f3f4f6;
  font-size: 12px;
}

.movie-card.light .card-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.movie-card.small .movie-card-body {
  display: none;
}

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

.category-tile {
  min-height: 160px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.12);
}

.category-tile strong {
  display: block;
  font-size: 22px;
  color: var(--color-primary);
}

.category-tile span {
  display: block;
  margin: 8px 0;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.page-main {
  padding: 34px 0 56px;
}

.page-hero {
  padding: clamp(30px, 6vw, 62px);
  margin-bottom: 28px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(120deg, var(--color-primary), var(--color-pink));
  box-shadow: var(--shadow-card);
}

.page-hero span {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.compact-hero {
  background: linear-gradient(120deg, #111827, #374151);
}

.category-hero {
  background: linear-gradient(120deg, var(--color-primary), var(--color-pink));
}

.rank-hero {
  background: linear-gradient(120deg, var(--color-blue), var(--color-purple));
}

.search-hero {
  background: linear-gradient(120deg, #111827, var(--color-primary));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  font-weight: 800;
}

.breadcrumb em {
  font-style: normal;
  opacity: 0.65;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-search {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.filter-search input {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 13px 15px;
  outline: 0;
}

.filter-search input:focus,
.filter-row select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.10);
}

.filter-count {
  white-space: nowrap;
  color: var(--color-muted);
  font-weight: 800;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.filter-row select {
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #ffffff;
  outline: 0;
}

.movie-card.is-hidden,
.rank-row.is-hidden {
  display: none;
}

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

.category-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.category-panel-head span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-primary);
  font-weight: 900;
}

.category-panel h2 {
  margin: 14px 0 6px;
  font-size: 28px;
}

.category-panel p {
  margin: 0;
  color: var(--color-muted);
}

.category-panel-links {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.category-panel-links a {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--color-soft);
  color: #374151;
  font-weight: 800;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 64px 92px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.12);
}

.rank-number {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 950;
}

.rank-row img {
  width: 92px;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

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

.rank-info strong {
  display: block;
  font-size: 20px;
}

.rank-info em {
  display: block;
  margin: 4px 0;
  color: var(--color-muted);
  font-style: normal;
  font-weight: 800;
}

.rank-info span {
  display: -webkit-box;
  overflow: hidden;
  color: #4b5563;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-row b {
  color: #f59e0b;
  font-size: 22px;
}

.detail-breadcrumb {
  margin: 0 0 22px;
  color: #4b5563;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: var(--shadow-strong);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.55), rgba(0, 0, 0, 0.58) 52%, rgba(0, 0, 0, 0.78));
  cursor: pointer;
}

.player-start span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  color: var(--color-primary);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.player-start strong {
  font-size: 18px;
}

.player-card.is-playing .player-start {
  display: none;
}

.detail-card,
.poster-card,
.side-card {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-tags span,
.tag-cloud span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-soft);
  color: #4b5563;
  font-weight: 800;
  font-size: 13px;
}

.detail-tags span.solid {
  color: #ffffff;
  background: var(--color-primary);
}

.detail-card h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.lead {
  margin: 16px 0;
  color: #374151;
  font-size: 18px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 0;
}

.info-list div {
  padding: 14px;
  border-radius: 14px;
  background: var(--color-soft);
}

.info-list dt {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.info-list dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.article-content h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.article-content h2 + p {
  margin-top: 0;
}

.article-content p {
  color: #374151;
  font-size: 17px;
}

.poster-card {
  margin-top: 0;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: #111827;
  margin-bottom: 16px;
}

.detail-side {
  position: sticky;
  top: 96px;
}

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

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

.side-list .movie-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  box-shadow: none;
  border: 1px solid var(--color-line);
}

.side-list .poster-wrap {
  aspect-ratio: 2 / 3;
  border-radius: 14px 0 0 14px;
}

.side-list .movie-card-body {
  padding: 10px 10px 10px 0;
}

.side-list .movie-line,
.side-list .card-tags {
  display: none;
}

.site-footer {
  margin-top: 64px;
  padding: 48px 24px 28px;
  color: #ffffff;
  background: #111827;
}

.footer-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #f87171;
}

.site-footer p,
.site-footer a {
  color: #9ca3af;
}

.site-footer a:hover {
  color: #ffffff;
}

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

.copyright {
  width: min(1280px, 100%);
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1f2937;
  text-align: center;
}

@media (max-width: 1180px) {
  .movie-grid,
  .movie-grid.compact,
  .movie-grid.hot-grid,
  .movie-grid.latest-grid,
  .movie-grid.listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .detail-side {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

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

  .hero-search {
    left: 24px;
    right: 24px;
    bottom: 70px;
    width: auto;
  }

  .stats-strip,
  .footer-grid,
  .category-panels {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .navbar,
  main,
  .page-main {
    width: calc(100% - 28px);
    padding-left: 0;
    padding-right: 0;
  }

  .navbar {
    height: 64px;
  }

  .brand {
    font-size: 21px;
  }

  .hero-carousel {
    min-height: 620px;
    margin-top: 18px;
    border-radius: 18px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 156px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-search {
    left: 16px;
    right: 16px;
    bottom: 76px;
  }

  .hero-dots {
    bottom: 34px;
  }

  .stats-strip,
  .footer-grid,
  .category-panels,
  .filter-row,
  .info-list {
    grid-template-columns: 1fr;
  }

  .filter-search {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid.compact,
  .movie-grid.hot-grid,
  .movie-grid.latest-grid,
  .movie-grid.listing-grid,
  .movie-grid.editor-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .movie-line,
  .card-tags {
    display: none;
  }

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

  .rank-row {
    grid-template-columns: 42px 74px 1fr;
    gap: 12px;
  }

  .rank-row b {
    grid-column: 3;
    justify-self: start;
    font-size: 18px;
  }

  .rank-row img {
    width: 74px;
    height: 104px;
  }

  .side-list .movie-card {
    grid-template-columns: 82px 1fr;
  }
}
