:root {
  --brand: #f97316;
  --brand-dark: #ea580c;
  --brand-deep: #c2410c;
  --accent: #facc15;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: #fed7aa;
  --page: #f9fafb;
  --panel: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ef4444, #ec4899);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.35);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #374151;
  font-weight: 600;
}

.desktop-nav a,
.nav-dropdown > a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .is-active,
.nav-dropdown:hover > a {
  color: var(--brand-dark);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 34px;
  width: 210px;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.header-search,
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.hero-search input,
.filter-search input,
.filter-selects select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.hero-search input:focus,
.filter-search input:focus,
.filter-selects select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.header-search button,
.hero-search button,
.primary-link,
.rank-button,
.detail-actions a,
.category-overview-body .primary-link,
.card-bottom a,
.hero-movie-actions a,
.panel-card.orange-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover,
.primary-link:hover,
.rank-button:hover,
.detail-actions a:hover,
.category-overview-body .primary-link:hover,
.card-bottom a:hover,
.hero-movie-actions a:hover,
.panel-card.orange-panel a:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.34);
}

.mobile-toggle,
.mobile-panel {
  display: none;
}

.hero-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 52%, #ec4899 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-blob {
  position: absolute;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.34;
  mix-blend-mode: multiply;
  animation: blob 7s infinite;
}

.hero-blob-one {
  top: 78px;
  left: 42px;
  background: #facc15;
}

.hero-blob-two {
  top: 160px;
  right: 48px;
  background: #f472b6;
  animation-delay: 2s;
}

.hero-blob-three {
  left: 34%;
  bottom: 82px;
  background: #fb923c;
  animation-delay: 4s;
}

@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  min-height: 600px;
  align-items: center;
  padding: 64px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.hero-movie-copy .eyebrow,
.page-hero .eyebrow,
.orange-panel .eyebrow {
  color: #fde68a;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 620px;
  color: #fff7ed;
  font-size: 20px;
  line-height: 1.8;
}

.hero-search {
  max-width: 620px;
  margin-top: 28px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero-search input {
  border: none;
  background: #ffffff;
}

.hero-actions,
.hero-movie-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions a:not(.primary-link),
.hero-movie-actions a:not(.primary-link),
.detail-actions a:not(.primary-link) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-actions a:not(.primary-link):hover,
.hero-movie-actions a:not(.primary-link):hover,
.detail-actions a:not(.primary-link):hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.hero-panel {
  position: relative;
  min-height: 440px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-slides {
  position: relative;
  min-height: 390px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-cover {
  overflow: hidden;
  min-height: 360px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.hero-cover img {
  transition: transform 0.5s ease;
}

.hero-cover:hover img {
  transform: scale(1.06);
}

.hero-movie-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.hero-movie-copy h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
}

.hero-movie-copy p {
  color: #fff7ed;
  line-height: 1.7;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffedd5;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section-block {
  padding: 64px 0;
}

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

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.content-card h2 {
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading a,
.more-links a,
.category-sample-links a {
  color: var(--brand-dark);
  font-weight: 800;
}

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

.category-card,
.panel-card,
.content-card,
.filter-panel,
.category-overview-card {
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.category-card {
  min-height: 180px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.category-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  display: block;
  color: #4b5563;
  line-height: 1.65;
}

.category-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--brand-deep);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
}

.panel-card {
  padding: 28px;
}

.orange-panel {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  border: none;
  background: linear-gradient(135deg, var(--brand), #ef4444);
}

.orange-panel h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
}

.orange-panel p {
  color: #fff7ed;
  line-height: 1.8;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

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

.poster-link img {
  transition: transform 0.45s ease, opacity 0.2s ease;
}

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

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: all 0.2s ease;
}

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

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

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 52px;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover {
  color: var(--brand-dark);
}

.movie-meta,
.movie-desc,
.rank-info p,
.detail-meta,
.detail-one-line,
.page-hero p,
.content-card p,
.site-footer p,
.category-overview-body p {
  color: var(--muted);
  line-height: 1.75;
}

.movie-meta {
  margin-top: 8px;
  font-size: 14px;
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 76px;
  margin-top: 10px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
}

.card-bottom a {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 46px 74px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #ffedd5;
  border-radius: 18px;
  background: #fffaf5;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ef4444);
  font-weight: 900;
}

.rank-cover {
  overflow: hidden;
  width: 74px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: #111827;
}

.rank-title {
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}

.rank-title:hover {
  color: var(--brand-dark);
}

.rank-info p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 2px;
  font-size: 14px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

.full-rank-list .rank-cover {
  width: 92px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f97316, #ef4444 55%, #ec4899);
  color: #ffffff;
}

.page-hero .container,
.detail-shell {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(250, 204, 21, 0.4), transparent 28%), radial-gradient(circle at 80% 40%, rgba(244, 114, 182, 0.34), transparent 26%), rgba(0, 0, 0, 0.18);
}

.page-hero h1 {
  color: #ffffff;
  max-width: 780px;
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: #fff7ed;
  font-size: 18px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 1.2fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
}

.filter-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.catalog-grid,
.search-grid {
  align-items: stretch;
}

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

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

.category-covers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 135px);
  gap: 4px;
  background: #111827;
}

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

.category-overview-body h2 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 900;
}

.category-sample-links,
.more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 18px 0 22px;
}

.more-links {
  padding-top: 30px;
}

.more-links h2 {
  width: 100%;
  font-size: 24px;
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #fff7ed;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: #fde68a;
}

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

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.detail-copy h1 {
  color: #ffffff;
  max-width: 850px;
}

.detail-meta {
  margin-top: 16px;
  color: #ffedd5;
  font-weight: 800;
}

.detail-one-line {
  max-width: 850px;
  margin-top: 16px;
  color: #fff7ed;
  font-size: 19px;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  transition: opacity 0.2s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #ef4444);
  font-size: 34px;
  box-shadow: 0 24px 50px rgba(249, 115, 22, 0.36);
  transform: translateX(3px);
}

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

.detail-content {
  padding-top: 0;
}

.content-card {
  padding: 34px;
}

.content-card h2 {
  margin-top: 26px;
  margin-bottom: 14px;
  font-size: 28px;
}

.content-card h2:first-child {
  margin-top: 0;
}

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

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

.info-list dt {
  color: var(--brand-dark);
  font-weight: 900;
}

.info-list dd {
  margin-top: 4px;
  color: #374151;
}

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

.movie-card-small .movie-title {
  min-height: 0;
  font-size: 18px;
}

.movie-card-small .movie-desc {
  min-height: 52px;
  -webkit-line-clamp: 2;
}

.site-footer {
  margin-top: 40px;
  background: #111827;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 36px;
  padding: 54px 0;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.site-footer p {
  margin-top: 14px;
  color: #d1d5db;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: #fed7aa;
  font-weight: 700;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  color: #9ca3af;
}

.is-filter-hidden {
  display: none !important;
}

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

  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--soft);
  }

  .mobile-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: var(--brand-dark);
  }

  .mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
  }

  .mobile-panel.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-panel a {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--soft);
    color: var(--brand-deep);
    font-weight: 800;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 520px;
  }

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

  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    font-size: 20px;
  }

  .hero-slider,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 46px 0;
    gap: 28px;
  }

  .hero-search,
  .hero-actions,
  .hero-movie-actions,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .hero-search {
    background: rgba(255, 255, 255, 0.18);
  }

  .hero-panel {
    min-height: 680px;
    border-radius: 24px;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-cover {
    min-height: 330px;
  }

  .hero-dots {
    left: 28px;
    right: auto;
  }

  .section-heading,
  .filter-panel,
  .category-overview-card,
  .detail-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .section-heading {
    display: grid;
  }

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

  .category-grid,
  .movie-grid,
  .related-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .category-covers {
    grid-template-rows: repeat(2, 110px);
  }

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

  .rank-button {
    grid-column: 2 / 4;
  }

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

  .player-box {
    border-radius: 20px;
  }
}
