:root {
  color-scheme: dark;
  --bg: #0b1120;
  --bg-soft: #111827;
  --panel: rgba(31, 41, 55, 0.86);
  --panel-strong: #1f2937;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --gold: #facc15;
  --gold-2: #f59e0b;
  --red: #ef4444;
  --green: #22c55e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.12), transparent 32rem), linear-gradient(135deg, #0b1120 0%, #111827 52%, #0f172a 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 17, 32, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 28px rgba(250, 204, 21, 0.28);
}

.brand-text {
  font-size: 18px;
  color: #ffffff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 10px;
  color: #cbd5e1;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(31, 41, 55, 0.9);
}

.header-search {
  position: relative;
  display: flex;
  width: 280px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(31, 41, 55, 0.86);
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.search-strip-form input,
.search-page-form input,
.filter-bar input,
.filter-bar select,
.search-filters select {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
}

.header-search input {
  flex: 1;
  padding: 10px 8px 10px 14px;
  font-size: 14px;
}

.header-search button {
  width: 42px;
  border: 0;
  color: #111827;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(31, 41, 55, 0.86);
}

.mobile-panel {
  border-top: 1px solid var(--line);
  padding: 14px 16px 18px;
  background: rgba(11, 17, 32, 0.96);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.mobile-search input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  background: #1f2937;
}

.mobile-search button {
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 700;
  color: #111827;
  background: var(--gold);
}

.mobile-links {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 10px 12px;
  border-radius: 10px;
  color: #cbd5e1;
  background: rgba(31, 41, 55, 0.58);
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #111827;
}

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

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

.hero-bg,
.page-hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.hero-bg.is-hidden,
.page-hero-bg.is-hidden,
.detail-bg.is-hidden,
.movie-card img.is-hidden,
.compact-card img.is-hidden,
.category-tile img.is-hidden,
.category-overview-media img.is-hidden,
.rank-cover img.is-hidden,
.detail-poster img.is-hidden,
.hero-poster img.is-hidden {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.82) 44%, rgba(17, 24, 39, 0.16) 100%), radial-gradient(circle at 20% 30%, rgba(250, 204, 21, 0.18), transparent 32rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 48px;
  padding-top: 42px;
  padding-bottom: 42px;
}

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

.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-one-line,
.page-hero p,
.detail-one-line {
  max-width: 780px;
  margin: 20px 0 0;
  color: #d1d5db;
  font-size: clamp(16px, 2vw, 20px);
}

.hero-meta,
.detail-meta,
.rank-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cbd5e1;
}

.hero-meta {
  margin-top: 18px;
}

.hero-meta span,
.detail-meta span,
.rank-meta span {
  padding: 5px 10px;
  border: 1px solid rgba(250, 204, 21, 0.24);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.68);
}

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

.hero-tags,
.detail-tags {
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(250, 204, 21, 0.12);
}

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

.primary-btn,
.ghost-btn,
.line-btn,
.search-strip-form button,
.search-page-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.search-strip-form button,
.search-page-form button {
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.25);
}

.ghost-btn,
.line-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(31, 41, 55, 0.72);
}

.primary-btn:hover,
.ghost-btn:hover,
.line-btn:hover,
.search-strip-form button:hover,
.search-page-form button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(135deg, #1f2937, #111827);
  box-shadow: var(--shadow);
}

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

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #111827;
  font-weight: 800;
  background: var(--gold);
}

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

.hero-dot {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-dot.active {
  background: var(--gold);
}

.home-search-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.78);
}

.search-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 24px;
  align-items: center;
  padding: 34px 0;
}

.search-strip-inner h2,
.section-head h2,
.panel-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.search-strip-form,
.search-page-form {
  display: flex;
  gap: 10px;
}

.search-strip-form input,
.search-page-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(31, 41, 55, 0.92);
}

.content-section {
  padding: 72px 0;
}

.soft-section {
  background: rgba(15, 23, 42, 0.62);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-more {
  color: var(--gold);
  font-weight: 800;
}

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

.compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(31, 41, 55, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.48);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

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

.poster-frame {
  display: block;
  aspect-ratio: 2 / 3;
  background: radial-gradient(circle at 30% 20%, rgba(250, 204, 21, 0.16), transparent 45%), linear-gradient(135deg, #1f2937, #111827);
}

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

.movie-card:hover .poster-frame img {
  transform: scale(1.06);
}

.year-badge,
.play-dot {
  position: absolute;
  z-index: 2;
}

.year-badge {
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  background: var(--gold);
}

.play-dot {
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  background: rgba(250, 204, 21, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

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

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

.movie-card h3 a:hover,
.rank-content h3 a:hover,
.category-overview-body h2 a:hover {
  color: var(--gold);
}

.card-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.card-line {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card .tag {
  font-size: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.rank-panel,
.detail-text-card,
.category-overview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(31, 41, 55, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.rank-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 20px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.56);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 204, 21, 0.42);
}

.compact-rank-list .rank-row {
  grid-template-columns: 44px 64px minmax(0, 1fr);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #111827;
  font-weight: 900;
  background: var(--gold);
}

.rank-cover {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f2937, #111827);
}

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

.rank-content h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.rank-content p {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-meta {
  gap: 6px;
  font-size: 12px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1f2937, #111827);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 17, 32, 0.94) 100%);
}

.category-tile-text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.category-tile-text strong {
  display: block;
  font-size: 22px;
}

.category-tile-text em {
  display: block;
  color: #cbd5e1;
  font-style: normal;
  font-size: 14px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.slim-hero {
  padding: 96px 0 72px;
  background: radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.18), transparent 34rem), linear-gradient(135deg, #111827, #0f172a);
}

.page-hero-content,
.slim-hero .container {
  position: relative;
  z-index: 2;
}

.category-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-hero-shade,
.detail-bg-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 17, 32, 0.98) 0%, rgba(15, 23, 42, 0.82) 48%, rgba(15, 23, 42, 0.18) 100%);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #cbd5e1;
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--gold);
}

.filter-bar,
.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(31, 41, 55, 0.62);
}

.filter-bar input {
  flex: 1 1 300px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(11, 17, 32, 0.8);
}

.filter-bar select,
.search-filters select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111827;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
}

.category-overview-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.category-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #111827;
  font-weight: 800;
  background: var(--gold);
}

.category-overview-body {
  padding: 24px;
}

.category-overview-body h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-overview-body p {
  margin: 0 0 18px;
  color: #cbd5e1;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.6);
}

.compact-card img {
  width: 54px;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: linear-gradient(135deg, #1f2937, #111827);
}

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

.compact-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.full-rank-list .rank-row {
  grid-template-columns: 60px 112px minmax(0, 1fr);
}

.detail-hero {
  min-height: 560px;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 56px 0;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #1f2937, #111827);
  box-shadow: var(--shadow);
}

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

.detail-info h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.detail-info .primary-btn {
  margin-top: 26px;
}

.player-section {
  padding-top: 48px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.24);
  border-radius: 22px;
  background: #000000;
  box-shadow: var(--shadow);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(250, 204, 21, 0.2), rgba(0, 0, 0, 0.72));
}

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

.player-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  color: #111827;
  font-size: 28px;
  background: var(--gold);
  box-shadow: 0 20px 48px rgba(250, 204, 21, 0.28);
}

.player-overlay strong {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.7);
}

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

.detail-text-card {
  padding: 26px;
}

.detail-text-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-text-card p {
  margin: 0;
  color: #d1d5db;
  font-size: 16px;
}

.search-page-form {
  max-width: 760px;
  margin-top: 24px;
}

.search-summary {
  margin-bottom: 18px;
  color: #cbd5e1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(11, 17, 32, 0.92);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.footer-brand p {
  max-width: 520px;
  color: var(--muted);
}

.footer-col h3 {
  margin: 0 0 12px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a {
  color: #cbd5e1;
}

.footer-col a:hover {
  color: var(--gold);
}

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

  .header-search {
    margin-left: auto;
  }

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

  .hero-content,
  .two-column,
  .detail-text-grid {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    gap: 10px;
  }

  .brand-text {
    font-size: 16px;
  }

  .header-search {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: center;
  }

  .hero-poster {
    display: none;
  }

  .search-strip-inner,
  .category-overview-card,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .search-strip-form,
  .search-page-form {
    flex-direction: column;
  }

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

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

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

  .card-line {
    display: none;
  }

  .rank-row,
  .full-rank-list .rank-row,
  .compact-rank-list .rank-row {
    grid-template-columns: 44px 72px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-content p {
    display: none;
  }

  .compact-card-list {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    max-width: 230px;
  }
}

@media (max-width: 420px) {
  .movie-grid {
    grid-template-columns: 1fr;
  }
}
