:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --teal: #0d9488;
  --orange: #f97316;
  --red: #ef4444;
  --green: #16a34a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--teal));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #334155;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #e0f2fe;
  color: var(--blue);
}

.nav-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.nav-search input {
  width: 230px;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  background: transparent;
}

.nav-search button,
.quick-search button {
  border: 0;
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface-soft);
  border-radius: 12px;
  padding: 9px 12px;
}

.hero-slider {
  position: relative;
  min-height: 690px;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #0891b2, #0f766e);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.75s ease;
  pointer-events: none;
}

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

.hero-bg,
.ranking-hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.ranking-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.05);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.72), rgba(37, 99, 235, 0.62), rgba(13, 148, 136, 0.72));
}

.hero-shell {
  position: relative;
  max-width: 1240px;
  min-height: 690px;
  margin: 0 auto;
  padding: 86px 20px 72px;
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 58px;
  align-items: center;
}

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

.hero-kicker,
.page-hero-shell > span,
.section-title span,
.ranking-hero-shell > span,
.category-overview-body > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dffafe;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: #cffafe;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.hero-copy p {
  max-width: 680px;
  color: #eff6ff;
  font-size: 18px;
}

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

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

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

.btn-light {
  color: var(--blue);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.btn-glass,
.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.42);
  transform: rotate(1.5deg);
  transition: transform 0.3s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.94);
  font-weight: 900;
}

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

.hero-dots button {
  width: 38px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 58px;
  background: #ffffff;
}

.section-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 20px;
}

.section-band {
  background: linear-gradient(135deg, #ecfeff, #f0fdf4);
}

.elevated-search {
  margin-top: -52px;
  position: relative;
  z-index: 6;
  padding-top: 0;
  padding-bottom: 28px;
}

.quick-search form,
.filter-panel {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search input,
.filter-search input {
  width: 100%;
  min-height: 50px;
  border: 0;
  outline: 0;
  padding: 0 18px;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--text);
}

.quick-search button {
  min-height: 50px;
  border-radius: 14px;
}

.quick-tags,
.filter-buttons {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-tags a,
.filter-buttons button,
.detail-tags a,
.detail-labels a,
.detail-labels span,
.tag-row span,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 800;
}

.filter-buttons button {
  border: 0;
  cursor: pointer;
  background: #ffffff;
  color: #475569;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.filter-buttons button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.filter-panel {
  display: block;
  margin-bottom: 28px;
}

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

.section-title.centered {
  justify-content: center;
  text-align: center;
}

.section-title span {
  color: var(--cyan);
}

.section-title h2,
.page-hero h1,
.ranking-hero h1 {
  margin: 6px 0 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-title p,
.category-card p,
.category-overview-body p,
.page-hero p,
.ranking-hero p,
.site-footer p {
  color: var(--muted);
}

.section-title > a,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.32s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72), transparent 65%);
  transition: opacity 0.25s ease;
}

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

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.85);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-weight: 900;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.poster-meta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.score,
.ranking-score {
  color: #f59e0b;
  font-weight: 950;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card h3 a:hover {
  color: var(--blue);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  background: #f1f5f9;
  color: #64748b;
}

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

.movie-card-compact {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 150px;
}

.movie-card-compact .poster-link img {
  height: 100%;
  aspect-ratio: auto;
}

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

.category-card {
  padding: 22px;
  min-height: 210px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 24px;
  font-weight: 950;
}

.category-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.mini-links,
.inline-movie-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-links a,
.inline-movie-links a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

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

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

.ranking-item {
  display: grid;
  grid-template-columns: auto 76px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.ranking-item:hover strong {
  color: var(--blue);
}

.rank-number {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-weight: 950;
}

.ranking-item img {
  width: 76px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

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

.ranking-copy strong,
.ranking-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-copy strong {
  font-weight: 900;
}

.ranking-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.page-hero,
.ranking-hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #06b6d4, #0d9488);
}

.compact-hero {
  padding: 72px 20px;
}

.page-hero-shell,
.ranking-hero-shell {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-shell h1,
.ranking-hero-shell h1 {
  color: #ffffff;
}

.page-hero-shell p,
.ranking-hero-shell p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #ecfeff;
  font-size: 18px;
}

.crumbs {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: #e0f2fe;
  font-weight: 800;
}

.crumbs a:hover {
  color: #ffffff;
}

.category-overview-list {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

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

.category-cover img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.category-overview-body h2 {
  margin: 8px 0;
  font-size: 30px;
  font-weight: 950;
}

.ranking-hero {
  min-height: 430px;
}

.ranking-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.82), rgba(37, 99, 235, 0.62));
}

.ranking-hero-shell {
  z-index: 2;
  padding: 110px 20px 92px;
}

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

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

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

.detail-crumbs {
  justify-content: flex-start;
  color: var(--muted);
  margin: 0 0 18px;
}

.player-card,
.detail-card,
.side-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.player-card {
  overflow: hidden;
  background: #020617;
}

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

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.42), rgba(37, 99, 235, 0.32));
}

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

.player-button {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  font-size: 30px;
  font-weight: 950;
}

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

.detail-card {
  margin-top: 22px;
  padding: 28px;
}

.detail-labels,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-labels span {
  background: #f1f5f9;
  color: #475569;
}

.detail-card h1 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-card .lead {
  color: #334155;
  font-size: 18px;
  font-weight: 700;
}

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

.detail-meta-grid div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.detail-meta-grid span,
.detail-meta-grid strong {
  display: block;
}

.detail-meta-grid span {
  color: var(--muted);
  font-size: 13px;
}

.detail-card h2,
.side-card h2 {
  margin: 26px 0 10px;
  font-size: 22px;
  font-weight: 950;
}

.detail-card p {
  color: #334155;
}

.detail-related-title {
  margin-top: 34px;
}

.detail-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 18px;
}

.poster-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.poster-side .btn {
  width: 100%;
}

.compact-ranking .ranking-item {
  grid-template-columns: auto 64px 1fr;
}

.compact-ranking .ranking-score {
  display: none;
}

.category-side {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-side h2 {
  width: 100%;
}

.category-side a {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.empty-state {
  padding: 34px;
  text-align: center;
  color: var(--muted);
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.site-footer {
  margin-top: 46px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.footer-brand {
  color: #ffffff;
}

.site-footer p {
  max-width: 560px;
  color: #94a3b8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, auto));
  gap: 10px 18px;
}

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

.footer-bottom {
  padding: 18px 20px;
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

[hidden] {
  display: none !important;
}

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

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

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

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

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-search {
    grid-column: 1 / -1;
    display: none;
  }

  .nav-links.is-open,
  .nav-search.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-search input {
    width: 100%;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 740px;
    padding-top: 72px;
  }

  .hero-poster {
    max-width: 360px;
  }

  .quick-search form,
  .filter-panel {
    display: block;
  }

  .quick-search button {
    width: 100%;
    margin-top: 12px;
  }

  .movie-grid,
  .featured-grid,
  .list-grid,
  .wide-list,
  .category-grid,
  .three-columns,
  .full-ranking {
    grid-template-columns: 1fr 1fr;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 580px) {
  .section-shell {
    padding: 42px 14px;
  }

  .hero-slider,
  .hero-shell {
    min-height: 760px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .movie-grid,
  .featured-grid,
  .list-grid,
  .wide-list,
  .category-grid,
  .three-columns,
  .full-ranking {
    grid-template-columns: 1fr;
  }

  .movie-card-compact {
    grid-template-columns: 135px 1fr;
  }

  .ranking-item {
    grid-template-columns: auto 60px 1fr;
  }

  .ranking-score {
    display: none;
  }

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