:root {
  --bg: #0a2540;
  --bg-soft: #12385d;
  --bg-panel: rgba(255, 255, 255, 0.08);
  --bg-panel-strong: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.12);
  --teal: #4fb3bf;
  --teal-dark: #3a9aa5;
  --blue: #74b9ff;
  --orange: #ff9f43;
  --red: #ff6b6b;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(79, 179, 191, 0.18), transparent 32rem), linear-gradient(180deg, #0a2540, #1a4d7a 48%, #0a2540);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 12px 28px rgba(79, 179, 191, 0.28);
  font-size: 0.92rem;
  padding-left: 0.1rem;
}

.brand-text,
.footer-brand span:last-child {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.55rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

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

.mobile-link {
  padding: 0.85rem 0.25rem;
  color: var(--muted);
  font-weight: 650;
}

.mobile-link.active {
  color: var(--teal);
}

.hero-slider {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.25rem 5rem;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.7s ease, transform 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  width: min(920px, 100%);
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 159, 67, 0.22);
  border: 1px solid rgba(255, 159, 67, 0.35);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 5.4rem);
  line-height: 1.06;
  font-weight: 900;
}

.hero-content h2 {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions,
.page-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary,
.btn-ghost,
.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary,
.home-search button {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(79, 179, 191, 0.24);
}

.btn-primary:hover,
.home-search button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 2rem;
  background: var(--teal);
}

.section {
  padding: 4rem 1rem;
}

.section-dark {
  background: rgba(10, 37, 64, 0.92);
}

.section-gradient {
  background: linear-gradient(180deg, rgba(26, 77, 122, 0.96), rgba(10, 37, 64, 0.96));
}

.section-gradient-reverse {
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.96), rgba(26, 77, 122, 0.96));
}

.section-head {
  max-width: 1280px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-head.slim {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0.95rem;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
}

.section-icon.red {
  color: var(--red);
}

.section-more {
  margin-left: auto;
  color: var(--teal);
  font-weight: 800;
}

.featured-grid,
.movie-grid,
.category-grid,
.category-overview-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
}

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

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

.compact-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
}

.movie-card {
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #061a2f;
}

.featured-grid .poster-wrap {
  aspect-ratio: 4 / 5;
}

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

.movie-card:hover .poster-wrap img,
.media-card:hover img,
.category-overview-card:hover .category-cover,
.ranking-row:hover img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 159, 67, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  padding-left: 0.15rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.2s ease;
}

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

.movie-card-body {
  padding: 1rem;
}

.movie-card-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

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

.movie-card-body p {
  margin: 0 0 0.85rem;
  min-height: 2.9em;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-card-compact .movie-card-body {
  padding: 0.75rem;
}

.movie-card-compact .movie-card-body h3 {
  font-size: 0.92rem;
}

.movie-card-compact .movie-card-body p {
  display: none;
}

.meta-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--faint);
  font-size: 0.82rem;
}

.meta-row span + span::before {
  content: "•";
  margin-right: 0.55rem;
  color: var(--line);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(79, 179, 191, 0.38);
}

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

.category-tile {
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.category-tile span {
  font-size: 1.25rem;
  font-weight: 900;
}

.category-tile p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
}

.split-section > div {
  max-width: none;
}

.rank-list,
.home-search,
.glass-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  backdrop-filter: blur(10px);
}

.rank-list {
  overflow: hidden;
}

.rank-item {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.rank-item:last-child {
  border-bottom: 0;
}

.rank-num {
  color: var(--orange);
  font-weight: 900;
}

.rank-title {
  font-weight: 800;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-meta {
  color: var(--faint);
  font-size: 0.86rem;
}

.home-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  padding: 1rem;
}

.home-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 1rem;
  outline: 0;
}

.home-search input::placeholder,
.filter-bar input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.filter-bar select option {
  color: #0a2540;
}

.subpage {
  min-height: 70vh;
}

.page-hero {
  min-height: 24rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 7rem 1rem 4rem;
  background-position: center;
  background-size: cover;
}

.small-hero {
  min-height: 20rem;
  background: linear-gradient(135deg, rgba(26, 77, 122, 0.88), rgba(10, 37, 64, 0.96));
}

.page-hero > div {
  width: min(1280px, 100%);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 780px;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.filter-bar {
  max-width: 1280px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.filter-bar.wide {
  grid-template-columns: minmax(220px, 1fr) 160px 160px 160px;
}

.filter-result {
  max-width: 1280px;
  min-height: 1.5rem;
  margin: 0 auto 1.25rem;
  color: var(--muted);
}

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

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

.category-overview-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.07);
}

.category-cover {
  min-height: 14rem;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.category-cover span {
  font-size: 1.7rem;
  font-weight: 900;
}

.category-overview-body {
  padding: 1.25rem;
}

.category-overview-body h2 {
  margin: 0 0 0.6rem;
}

.category-overview-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mini-links a {
  max-width: 11rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.detail-page {
  background: linear-gradient(180deg, #0a2540, #1a4d7a 48%, #0a2540);
}

.detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 1.25rem;
}

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

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.42);
  z-index: 2;
  overflow: hidden;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.72);
}

.player-play,
.player-text {
  position: relative;
  z-index: 3;
}

.player-play {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  padding-left: 0.2rem;
  border-radius: 999px;
  background: rgba(79, 179, 191, 0.9);
  box-shadow: 0 16px 40px rgba(79, 179, 191, 0.26);
  font-size: 1.45rem;
}

.player-text {
  font-size: 1.05rem;
  font-weight: 800;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover.is-loading .player-play {
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.detail-info,
.review-panel,
.related-panel {
  padding: 1.35rem;
}

.detail-info h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.detail-meta {
  margin-bottom: 1rem;
}

.detail-meta span {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
}

.tag-list span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(79, 179, 191, 0.14);
}

.detail-info h2,
.review-panel h2,
.related-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
}

.detail-info p,
.review-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.related-panel {
  position: sticky;
  top: 6rem;
}

.related-list {
  display: grid;
  gap: 0.85rem;
}

.media-card {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: 0.95rem;
  transition: background 0.2s ease;
}

.media-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.media-card img {
  width: 7.5rem;
  height: 4.6rem;
  border-radius: 0.75rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.96rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.media-card p {
  margin: 0;
  color: var(--faint);
  font-size: 0.8rem;
}

.ranking-list {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.ranking-row {
  display: grid;
  grid-template-columns: 4rem 5.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ranking-row:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.11);
}

.ranking-index {
  color: var(--orange);
  font-weight: 900;
  font-size: 1.1rem;
}

.ranking-row img {
  width: 5.2rem;
  height: 3.4rem;
  border-radius: 0.65rem;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.ranking-main strong,
.ranking-main em {
  display: block;
}

.ranking-main strong {
  margin-bottom: 0.3rem;
}

.ranking-main em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-tags {
  color: var(--faint);
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 37, 64, 0.96);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-grid h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-grid p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

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

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

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

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

  .mobile-toggle {
    display: block;
  }

  .featured-grid,
  .category-overview-grid,
  .split-section,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .filter-bar,
  .filter-bar.wide {
    grid-template-columns: 1fr;
  }

  .related-panel {
    position: static;
  }

  .ranking-row {
    grid-template-columns: 3rem 4.5rem minmax(0, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .header-inner {
    height: 4rem;
  }

  .hero-slider {
    min-height: 72vh;
  }

  .hero-slide {
    padding-top: 5.5rem;
  }

  .hero-actions,
  .page-actions,
  .home-search {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost,
  .home-search button {
    width: 100%;
  }

  .section {
    padding: 3rem 0.85rem;
  }

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

  .section-more {
    display: none;
  }

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

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

  .movie-card-body {
    padding: 0.75rem;
  }

  .movie-card-body h3 {
    font-size: 0.96rem;
  }

  .rank-item {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }

  .rank-meta {
    grid-column: 2;
  }

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

  .media-card img {
    width: 6rem;
    height: 3.8rem;
  }

  .ranking-row {
    grid-template-columns: 2.5rem 4rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .ranking-row img {
    width: 4rem;
    height: 3rem;
  }
}
