* {
  box-sizing: border-box;
}

:root {
  --pink: #ec4899;
  --pink-soft: #fbcfe8;
  --purple: #a855f7;
  --purple-dark: #581c87;
  --blue: #3b82f6;
  --yellow: #facc15;
  --text: #1f2937;
  --muted: #6b7280;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.76);
  --line: rgba(168, 85, 247, 0.16);
  --shadow: 0 22px 65px rgba(88, 28, 135, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 48%, #eff6ff 100%);
  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 {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.96), rgba(168, 85, 247, 0.96), rgba(59, 130, 246, 0.96));
  box-shadow: 0 15px 45px rgba(88, 28, 135, 0.24);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #581c87;
  background: linear-gradient(135deg, #fef08a, #f9a8d4);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fef08a;
  transform: translateY(-1px);
}

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

.header-search input {
  width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  color: #581c87;
  font-weight: 800;
  background: #facc15;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.hero-banner {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90deg, #ec4899, #a855f7 48%, #3b82f6);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(250, 204, 21, 0.32), transparent 26%), linear-gradient(90deg, rgba(236, 72, 153, 0.92), rgba(88, 28, 135, 0.9), rgba(37, 99, 235, 0.88));
}

.stars-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.stars-background::before,
.stars-background::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffffff;
  box-shadow: 100px 150px #fff, 200px 300px #fff, 300px 100px #fff, 400px 250px #fff, 500px 180px #fff, 600px 320px #fff, 700px 90px #fff, 800px 200px #fff, 900px 280px #fff, 1000px 140px #fff, 1100px 260px #fff, 1200px 170px #fff, 50px 220px #fff, 150px 80px #fff, 250px 340px #fff, 350px 120px #fff, 450px 290px #fff, 550px 160px #fff, 650px 310px #fff, 750px 70px #fff, 850px 240px #fff, 950px 190px #fff, 1050px 300px #fff, 1150px 130px #fff;
  animation: starsTwinkle 3s ease-in-out infinite;
}

.stars-background::after {
  width: 3px;
  height: 3px;
  animation-delay: 1.5s;
  box-shadow: 80px 180px #fff, 180px 280px #fff, 280px 120px #fff, 380px 230px #fff, 480px 190px #fff, 580px 300px #fff, 680px 100px #fff, 780px 220px #fff, 880px 270px #fff, 980px 150px #fff, 1080px 250px #fff, 1180px 160px #fff;
}

@keyframes starsTwinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.28;
    transform: scale(0.82);
  }
}

.hero-track {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  align-items: center;
  gap: 56px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 60px 260px 60px -80px;
  z-index: -1;
  background-size: cover;
  background-position: center;
  border-radius: 42px;
  opacity: 0.14;
  filter: blur(1px) saturate(1.3);
}

.hero-kicker,
.detail-kicker,
.section-title span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 13px;
  color: #581c87;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #fef08a, #f9a8d4);
}

.hero-content h1 {
  margin: 20px 0 12px;
  max-width: 780px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-content h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.12;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #581c87;
  background: linear-gradient(135deg, #fef08a, #f9a8d4);
  box-shadow: 0 12px 35px rgba(250, 204, 21, 0.28);
}

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

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 34px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 35px 75px rgba(31, 41, 55, 0.28);
  backdrop-filter: blur(16px);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
}

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

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

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

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

.intro-block {
  padding-top: 72px;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title.centered span {
  margin: 0 auto;
}

.section-title.between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-title h2 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-link {
  color: #7e22ce;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

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

.category-tile,
.category-panel,
.movie-card,
.story-panel,
.filter-panel {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.category-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 78px rgba(88, 28, 135, 0.2);
}

.category-tile span {
  font-size: 34px;
}

.category-tile strong {
  font-size: 21px;
}

.category-tile em {
  color: var(--muted);
  font-style: normal;
}

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

.movie-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover img {
  transform: scale(1.05);
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  color: #581c87;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: #fef08a;
}

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

.movie-meta-line,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.movie-meta-line span,
.detail-meta span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.09);
}

.movie-card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.22;
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.tag-row span {
  padding: 5px 9px;
  color: #7e22ce;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(244, 114, 182, 0.14);
}

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

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.rank-item a {
  display: grid;
  grid-template-columns: 46px 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(168, 85, 247, 0.12);
  box-shadow: 0 12px 36px rgba(88, 28, 135, 0.08);
}

.rank-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #581c87;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef08a, #f9a8d4);
}

.rank-item img {
  width: 64px;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
}

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

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

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

.rank-score {
  color: #db2777;
  font-weight: 900;
}

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

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

.compact-card h3 {
  font-size: 17px;
}

.block-btn {
  margin-top: 22px;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.95), rgba(168, 85, 247, 0.94), rgba(59, 130, 246, 0.92));
}

.small-hero,
.category-hero {
  padding: 96px 16px 78px;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.page-hero p {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.page-icon {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 44px;
}

.page-actions {
  position: relative;
  z-index: 2;
  justify-content: center;
}

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

.category-panel {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-panel-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  font-size: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fef08a, #f9a8d4);
}

.category-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-panel p {
  margin: 0;
  color: var(--muted);
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.category-preview a {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fce7f3;
}

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

.category-preview span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 8px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

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

.lead-grid {
  margin-bottom: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.search-shell {
  padding-top: 44px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 30px;
  padding: 20px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
  background: #ffffff;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #7e22ce;
  font-weight: 800;
}

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  color: #ffffff;
  background: radial-gradient(circle at 90% 20%, rgba(250, 204, 21, 0.28), transparent 26%), linear-gradient(135deg, rgba(236, 72, 153, 0.94), rgba(88, 28, 135, 0.92), rgba(37, 99, 235, 0.9));
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.detail-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.detail-meta {
  color: rgba(255, 255, 255, 0.82);
}

.detail-meta span {
  background: rgba(255, 255, 255, 0.14);
}

.detail-tags {
  margin-top: 16px;
}

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

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

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 30px 85px rgba(17, 24, 39, 0.24);
}

.video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111827;
  object-fit: contain;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #581c87;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.42));
  cursor: pointer;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding-left: 6px;
  border-radius: 999px;
  font-size: 40px;
  background: linear-gradient(135deg, #fef08a, #f9a8d4);
  box-shadow: 0 20px 55px rgba(250, 204, 21, 0.34);
}

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

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

.story-panel {
  padding: 32px;
}

.story-panel h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.story-panel p {
  margin: 0 0 26px;
  color: #374151;
  font-size: 17px;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

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

.site-footer {
  margin-top: 42px;
  color: #ffffff;
  background: linear-gradient(90deg, #581c87, #831843, #1e3a8a);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 38px;
}

.footer-brand h2,
.footer-links h3 {
  margin: 0 0 14px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #581c87;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #fef08a, #f9a8d4);
  box-shadow: 0 16px 40px rgba(88, 28, 135, 0.2);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  transform: translateY(-3px);
}

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

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

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

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

  .menu-toggle {
    display: block;
  }

  .site-header.nav-open .mobile-nav {
    display: block;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px 0 90px;
  }

  .hero-poster {
    width: min(290px, 70vw);
    margin: 0 auto;
  }

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

  .detail-poster {
    max-width: 300px;
    margin: 0 auto;
  }

  .full-rank {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 62px;
  }

  .brand {
    font-size: 19px;
  }

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

  .hero-content h1 {
    font-size: 34px;
  }

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

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

  .category-grid,
  .category-panel-grid,
  .movie-grid,
  .compact-grid,
  .lead-grid,
  .related-grid,
  .category-page-grid {
    grid-template-columns: 1fr;
  }

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

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

  .detail-hero {
    padding: 22px;
    border-radius: 24px;
  }

  .rank-item a {
    grid-template-columns: 40px 56px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }
}
