:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-soft: #fee2e2;
  --gold: #f59e0b;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: #ffffff;
  --bg: #f7f7f8;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #1f2937, #111827);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text {
  font-size: 21px;
  background: linear-gradient(90deg, var(--red), #7f1d1d);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  background: linear-gradient(135deg, var(--red), #991b1b);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.22);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.nav-link {
  font-size: 15px;
  font-weight: 650;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: var(--red);
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.top-search input,
.mobile-search input {
  width: 210px;
  border: 0;
  outline: 0;
  padding: 11px 8px 11px 16px;
  font-size: 14px;
  background: transparent;
}

.top-search button,
.mobile-search button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 700;
}

.top-search button:hover,
.mobile-search button:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #374151;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 16px 18px;
  background: #ffffff;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-link {
  padding: 8px 2px;
  color: #374151;
  font-weight: 650;
}

.mobile-search {
  width: 100%;
}

.mobile-search input {
  width: 100%;
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #111827 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 20% 20%, rgba(248, 113, 113, 0.36), transparent 30%), radial-gradient(circle at 75% 74%, rgba(245, 158, 11, 0.28), transparent 32%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  opacity: 0.55;
}

.hero-glow-red {
  width: 260px;
  height: 260px;
  right: 10%;
  top: 90px;
  background: rgba(220, 38, 38, 0.55);
}

.hero-glow-gold {
  width: 340px;
  height: 340px;
  left: 7%;
  bottom: 52px;
  background: rgba(217, 119, 6, 0.34);
}

.hero-track {
  position: relative;
  z-index: 2;
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: blur(32px);
  transform: scale(1.08);
}

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

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 20px;
  padding: 9px 17px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.92);
  box-shadow: 0 12px 24px rgba(127, 29, 29, 0.24);
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 680px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.detail-tags-top,
.movie-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.detail-tags-top span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 650;
}

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

.primary-button,
.ghost-button,
.text-button,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 16px 30px rgba(220, 38, 38, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--red-dark);
}

.ghost-button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.ghost-button.light {
  color: var(--red);
  border-color: rgba(220, 38, 38, 0.18);
  background: #ffffff;
}

.hero-poster {
  position: relative;
  display: block;
  width: min(390px, 100%);
  aspect-ratio: 2 / 3;
  justify-self: center;
  border: 4px solid rgba(255, 255, 255, 0.20);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(1.5deg);
  transition: transform 0.3s ease;
}

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

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

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

.page-stack {
  padding: 48px 0;
  display: grid;
  gap: 50px;
}

.movie-section,
.category-section,
.ranking-panel,
.filter-card,
.detail-card,
.player-card,
.related-card,
.category-card,
.page-hero {
  border-radius: var(--radius);
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-head > div {
  position: relative;
  padding-left: 18px;
}

.section-accent {
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
}

.more-link {
  flex: none;
  color: var(--red);
}

.more-link:hover,
.text-button:hover {
  color: var(--red-dark);
}

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

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

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

.poster-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

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

.movie-card:hover .poster-frame img,
.related-item:hover img,
.rank-row:hover img,
.category-tile:hover img,
.ranking-card:hover img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.10));
}

.play-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.34);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 35px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.poster-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px;
  color: #ffffff;
}

.poster-frame strong,
.poster-frame small {
  display: block;
}

.poster-frame strong {
  line-height: 1.35;
  font-size: 15px;
}

.poster-frame small {
  margin-top: 4px;
  color: #d1d5db;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-info {
  padding: 14px 14px 16px;
}

.movie-info h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

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

.movie-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #4b5563;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 650;
}

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

.category-tile {
  position: relative;
  min-height: 158px;
  overflow: hidden;
  border-radius: 18px;
  color: #ffffff;
  background: #111827;
  box-shadow: var(--shadow-soft);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.category-tile span,
.category-tile small {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 16px;
}

.category-tile span {
  margin-top: 86px;
  font-size: 20px;
  font-weight: 850;
}

.category-tile small {
  margin-top: 6px;
  color: #e5e7eb;
  line-height: 1.4;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-row > span {
  color: var(--red);
  font-weight: 900;
}

.rank-row img {
  width: 72px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rank-row strong,
.rank-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row small {
  margin-top: 4px;
  color: var(--muted);
}

.site-footer {
  margin-top: 30px;
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding: 44px 0;
}

.footer-logo {
  color: #ffffff;
  font-size: 18px;
}

.footer-brand p,
.site-footer li {
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 16px;
}

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

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

.page-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 260px;
  padding: 38px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937 58%, #3f0a0a);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.22);
  filter: blur(10px);
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

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

.page-hero p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #d1d5db;
  line-height: 1.8;
}

.page-hero-compact {
  min-height: 220px;
}

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

.category-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-card-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  overflow: hidden;
  background: #111827;
}

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

.category-card-body {
  padding: 22px;
}

.category-card-body h2 {
  margin: 0 0 10px;
}

.category-card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.text-button {
  color: var(--red);
}

.filter-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-card input,
.filter-card select {
  min-height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.filter-card input {
  flex: 1;
}

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

.filter-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px 180px;
}

.empty-state {
  display: none;
  padding: 48px 18px;
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

.empty-state.is-visible {
  display: block;
}

.detail-shell {
  padding: 30px 0 56px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card,
.detail-card,
.related-card {
  background: #ffffff;
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.overlay-icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.35);
  font-size: 28px;
}

.detail-card {
  padding: 28px;
}

.detail-tags-top span {
  color: var(--red-dark);
  border: 0;
  background: var(--red-soft);
}

.detail-card h1 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.lead-text {
  margin: 0 0 26px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.detail-card section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.detail-card h2,
.related-card h2 {
  margin: 0 0 14px;
  font-size: 21px;
}

.detail-card p {
  color: #374151;
  line-height: 1.9;
  text-align: justify;
}

.tag-cloud span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #374151;
  background: #f3f4f6;
  font-size: 13px;
}

.related-card {
  position: sticky;
  top: 96px;
  padding: 20px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.related-item:hover {
  background: #f9fafb;
}

.related-item img {
  grid-row: span 2;
  width: 112px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.related-item span,
.related-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-item span {
  font-weight: 800;
}

.related-item small {
  color: var(--muted);
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 74px 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ranking-number {
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
}

.ranking-card img {
  width: 116px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ranking-card h2 {
  margin: 0;
  font-size: 18px;
}

.ranking-card p {
  margin: 7px 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

[hidden] {
  display: none !important;
}

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

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

@media (max-width: 880px) {
  .desktop-nav,
  .top-search {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-shell {
    min-height: 64px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
    padding: 38px 0 74px;
  }

  .hero-poster {
    width: min(310px, 82vw);
  }

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

  .category-overview-grid,
  .rank-list,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .related-card {
    position: static;
  }

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

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

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

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

  .hero-copy p {
    font-size: 16px;
  }

  .page-stack {
    padding: 30px 0;
    gap: 34px;
  }

  .page-hero {
    display: block;
    padding: 28px;
  }

  .page-hero .ghost-button {
    margin-top: 20px;
  }

  .section-head {
    display: block;
  }

  .more-link {
    margin-top: 12px;
  }

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

  .movie-info {
    padding: 12px;
  }

  .movie-info p {
    display: none;
  }

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

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

  .detail-card {
    padding: 22px;
  }

  .ranking-card {
    grid-template-columns: 54px 88px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-card img {
    width: 88px;
  }

  .ranking-card p {
    display: none;
  }
}
