:root {
  --pink: #ec4899;
  --pink-dark: #be185d;
  --purple: #7c3aed;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --orange: #f97316;
  --red: #ef4444;
  --green: #10b981;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 28px 65px rgba(15, 23, 42, 0.22);
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 45%, #eff6ff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.95), rgba(124, 58, 237, 0.95), rgba(37, 99, 235, 0.95));
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 10px 26px rgba(236, 72, 153, 0.45);
}

.brand .brand-mark {
  background: rgba(255, 255, 255, 0.2);
}

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

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

.nav-link,
.mobile-nav-link {
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

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

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

.hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

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

.hero-slide img,
.detail-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.36), transparent 32%),
    linear-gradient(90deg, rgba(131, 24, 67, 0.94), rgba(76, 29, 149, 0.82), rgba(30, 64, 175, 0.86));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding-top: 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fde68a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 16px 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero p,
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.75;
}

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

.primary-button,
.ghost-button,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--pink), var(--purple));
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.36);
}

.primary-button:hover,
.ghost-button:hover,
.more-link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.primary-button.small {
  padding: 10px 16px;
  font-size: 14px;
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.hero-search {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 36px;
  width: min(760px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px);
}

.hero-search input,
.hero-search button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
}

.hero-search input {
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

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

.hero-search button {
  padding: 0 22px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border: 0;
  cursor: pointer;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  display: flex;
  gap: 8px;
}

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

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

.section {
  padding: 72px 0;
}

.white-section {
  background: rgba(255, 255, 255, 0.72);
}

.soft-panel {
  background: linear-gradient(90deg, rgba(243, 232, 255, 0.86), rgba(219, 234, 254, 0.86));
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--slate-900);
}

.section-title p {
  margin: 6px 0 0;
  color: var(--slate-500);
}

.section-icon,
.category-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 18px;
  color: var(--white);
  font-size: 26px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 16px 35px rgba(124, 58, 237, 0.22);
}

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

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

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

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

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

.movie-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

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

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3, #ede9fe, #dbeafe);
}

.movie-card-large .poster-frame,
.movie-card-rank .poster-frame {
  aspect-ratio: 16 / 10;
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent);
}

.duration,
.rank-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
}

.rank-badge {
  left: 10px;
  right: auto;
  top: 10px;
  bottom: auto;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: rgba(236, 72, 153, 0.88);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.36);
  transition: 0.25s ease;
}

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

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 800;
}

.card-body h3 {
  margin: 8px 0 8px;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.35;
}

.card-body p {
  min-height: 44px;
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.6;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span {
  color: #7e22ce;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3e8ff;
}

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

.category-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  box-shadow: var(--shadow-sm);
  transition: 0.28s ease;
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.category-card:nth-child(4n) {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.category-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.category-card .category-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.category-card strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
}

.category-card em {
  margin-top: 4px;
  font-style: normal;
  opacity: 0.9;
}

.category-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.mini-ranking,
.ranking-list {
  display: grid;
  gap: 12px;
}

.ranking-list {
  margin-top: 28px;
}

.rank-row {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.rank-row a {
  display: grid;
  grid-template-columns: 56px 72px 1fr 70px;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 10px 16px 10px 10px;
}

.rank-number {
  color: var(--pink-dark);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

.rank-info strong {
  display: block;
  color: var(--slate-900);
}

.rank-info em {
  display: block;
  margin-top: 4px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
}

.rank-score {
  color: var(--white);
  font-weight: 900;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

.more-link {
  margin-top: 18px;
  color: var(--purple);
  background: var(--white);
}

.page-hero {
  color: var(--white);
  padding: 76px 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.filter-search {
  display: grid;
  gap: 8px;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select,
.filter-panel button {
  min-height: 46px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 0 14px;
  background: var(--white);
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.filter-panel button {
  color: var(--white);
  font-weight: 800;
  border: 0;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  cursor: pointer;
}

.filter-count {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--slate-500);
  font-size: 14px;
}

.empty-state {
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--slate-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-overview {
  display: grid;
  gap: 28px;
  padding: 64px 0;
}

.category-overview-block {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.category-overview-head h2 {
  display: inline-block;
  margin: 0 0 0 12px;
  color: var(--slate-900);
  font-size: 30px;
}

.category-overview-head p {
  margin: 10px 0 0;
  color: var(--slate-500);
}

.detail-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--slate-950);
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.62;
}

.detail-hero-bg div {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(88, 28, 135, 0.82), rgba(15, 23, 42, 0.94)),
    linear-gradient(0deg, var(--slate-950), transparent 55%);
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 54px 0 64px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
}

.detail-poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

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

.detail-poster span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--white);
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

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

.detail-one-line {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.75;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.detail-main {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: start;
}

.content-column,
.side-column {
  display: grid;
  gap: 24px;
}

.player-section,
.article-card,
.side-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.player-section h2,
.article-card h2,
.side-card h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: 26px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #000000;
}

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

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 28px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 20px 45px rgba(236, 72, 153, 0.38);
  cursor: pointer;
}

.video-shell.playing .big-play {
  opacity: 0;
  pointer-events: none;
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-shadow: 0 2px 8px #000000;
}

.video-shell.playing .player-message {
  display: none;
}

.article-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.9;
}

.side-card dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--slate-500);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: var(--slate-800);
}

.sitemap-list {
  columns: 3;
  gap: 28px;
  margin: 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.sitemap-list li {
  break-inside: avoid;
  margin: 0 0 10px;
  color: var(--slate-700);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--slate-950), #3b0764, var(--slate-950));
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

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

.footer-grid a:hover {
  color: #f9a8d4;
}

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

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

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

  .two-column,
  .detail-main,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hero-dots {
    right: 20px;
    bottom: 18px;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .all-grid,
  .rank-featured,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-layout,
  .detail-main,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sitemap-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .hero h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 36px;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .all-grid,
  .rank-featured,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-row a {
    grid-template-columns: 44px 58px 1fr;
  }

  .rank-score {
    grid-column: 2 / 4;
    width: max-content;
  }

  .section {
    padding: 52px 0;
  }
}
