:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-solid: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --orange: #fb923c;
  --rose: #fb7185;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(34, 211, 238, 0.15), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.16), transparent 28%),
    var(--bg);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.50), transparent);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 6, 23, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
}

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

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

.nav-link,
.mobile-nav-link {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  background: rgba(2, 6, 23, 0.98);
  border-top: 1px solid var(--line);
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
}

main {
  min-height: 60vh;
}

.hero-carousel {
  position: relative;
  min-height: 72vh;
  background: #020617;
  overflow: hidden;
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-bg::after,
.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #020617 0%, rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.25) 100%),
    radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.22), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 48px;
  padding-top: 120px;
  padding-bottom: 80px;
}

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

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-copy p,
.page-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.85;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--muted-strong);
  font-size: 12px;
}

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

.primary-button,
.ghost-button,
.quick-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 13px;
  border: 0;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.quick-search button {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.25);
}

.ghost-button {
  border: 1px solid rgba(203, 213, 225, 0.24);
  background: rgba(15, 23, 42, 0.78);
}

.primary-button:hover,
.ghost-button:hover,
.quick-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.30);
}

.hero-poster {
  display: block;
  align-self: center;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.30), transparent 28%),
    linear-gradient(135deg, #0f172a, #111827 42%, #0891b2);
  box-shadow: var(--shadow);
}

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

.poster-frame img.is-hidden {
  opacity: 0;
}

.poster-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
}

.hero-poster-frame {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.hero-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.36);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.8);
}

.quick-search-panel,
.content-section {
  padding: 64px 0 0;
}

.quick-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 26px;
}

.quick-search-panel h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.03em;
}

.quick-search {
  display: flex;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
}

.quick-search input,
.toolbar input,
.search-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 13px;
  outline: 0;
  background: rgba(2, 6, 23, 0.78);
  color: #fff;
  padding: 0 16px;
}

.quick-search input:focus,
.toolbar input:focus,
.search-panel input:focus {
  border-color: rgba(34, 211, 238, 0.75);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

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

.section-heading p {
  max-width: 740px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-weight: 800;
  white-space: nowrap;
}

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

.movie-card {
  min-width: 0;
}

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

.movie-cover-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 13px;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.movie-card-large .movie-cover-wrap {
  aspect-ratio: 16 / 9;
}

.movie-cover-wrap .poster-frame {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: none;
}

.movie-card:hover img,
.category-tile:hover img,
.category-page-card:hover img {
  transform: scale(1.08);
}

.movie-category,
.movie-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.movie-category {
  top: 10px;
  left: 10px;
  color: var(--cyan);
}

.movie-year {
  right: 10px;
  bottom: 10px;
}

.rank-badge {
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.play-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.28);
  color: #fff;
  font-size: 34px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
}

.movie-card-body h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover h3 {
  color: var(--cyan);
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 12px;
}

.movie-meta span + span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(148, 163, 184, 0.42);
}

.gradient-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 64px auto 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.78));
  box-shadow: var(--shadow);
}

.panel-0 {
  background: linear-gradient(135deg, rgba(8, 47, 73, 0.74), rgba(15, 23, 42, 0.92));
}

.panel-1 {
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.62), rgba(15, 23, 42, 0.92));
}

.panel-2 {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.52), rgba(15, 23, 42, 0.92));
}

.panel-3 {
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.56), rgba(15, 23, 42, 0.92));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 46px 88px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.65);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row a:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.42);
}

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

.rank-poster {
  width: 88px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  box-shadow: none;
}

.rank-info strong,
.rank-info em {
  display: block;
  min-width: 0;
}

.rank-info strong {
  margin-bottom: 5px;
  font-size: 16px;
}

.rank-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-score {
  color: #fbbf24;
  font-size: 20px;
  font-weight: 900;
  text-align: right;
}

.stat-card,
.detail-side-card,
.detail-article,
.search-panel,
.toolbar {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
}

.stat-card {
  position: sticky;
  top: 90px;
  padding: 28px;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin: 8px 0;
  font-size: 64px;
  line-height: 1;
}

.stat-card p {
  color: var(--muted-strong);
  line-height: 1.7;
}

.category-grid,
.category-page-grid {
  display: grid;
  gap: 20px;
}

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

.category-tile {
  position: relative;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.category-cover,
.category-page-poster {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: none;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.24));
}

.category-tile strong,
.category-tile em,
.category-tile small {
  position: relative;
  z-index: 2;
}

.category-tile strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.category-tile em {
  color: var(--muted-strong);
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}

.category-tile small {
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 800;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #0f172a, #020617);
}

.page-hero {
  padding: 130px 0 68px;
}

.compact-hero h1 {
  max-width: 900px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-stats span {
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.10);
  color: var(--cyan);
  font-weight: 800;
}

.toolbar,
.search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  margin-bottom: 28px;
}

.toolbar label {
  display: grid;
  width: min(100%, 540px);
  gap: 8px;
}

.toolbar label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-panel input {
  min-height: 58px;
  font-size: 17px;
}

.detail-hero {
  min-height: 72vh;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 128px;
  padding-bottom: 70px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: end;
}

.detail-poster-frame {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.detail-meta-grid span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.68);
  color: var(--muted-strong);
}

.detail-meta-grid strong {
  color: var(--muted);
  font-size: 12px;
}

.detail-tags {
  margin-bottom: 26px;
}

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

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 211, 238, 0.18), transparent 34%),
    #000;
  box-shadow: var(--shadow);
}

.player-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.26));
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 38px;
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.36);
}

.player-overlay strong {
  font-size: 18px;
}

.video-player.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  margin: 0;
  color: #fca5a5;
  text-align: center;
  pointer-events: none;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding-top: 56px;
}

.detail-article,
.detail-side-card {
  padding: 28px;
}

.detail-article h2,
.detail-side-card h2 {
  margin: 0 0 16px;
  font-size: 25px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 2;
}

.detail-side-card {
  align-self: start;
  position: sticky;
  top: 90px;
}

.detail-side-card dl {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.detail-side-card dt {
  color: var(--muted);
}

.detail-side-card dd {
  margin: 0;
  color: var(--muted-strong);
}

.detail-side-card a {
  color: var(--cyan);
}

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

.category-page-card a {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0f172a;
}

.category-page-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.20));
}

.category-page-card div {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.category-page-card span {
  color: var(--cyan);
  font-weight: 800;
}

.category-page-card h2 {
  margin: 8px 0;
  font-size: 30px;
}

.category-page-card p,
.category-page-card em {
  display: block;
  color: var(--muted-strong);
  font-style: normal;
  line-height: 1.7;
}

.category-page-card em {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  margin-top: 80px;
  padding: 58px 0 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.68), rgba(2, 6, 23, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-copy,
.footer-count,
.footer-list a {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

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

.footer-list a:hover {
  color: var(--cyan);
}

.filter-card.is-hidden {
  display: none;
}

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

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

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

  .hero-poster,
  .detail-poster {
    display: none;
  }

  .stat-card,
  .detail-side-card {
    position: static;
  }
}

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

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

  .hero-carousel,
  .hero-content {
    min-height: 76vh;
  }

  .hero-content {
    padding-bottom: 70px;
  }

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

  .quick-search-panel,
  .toolbar,
  .search-panel,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
    align-items: stretch;
  }

  .quick-search {
    flex-direction: column;
  }

  .movie-grid,
  .category-grid,
  .category-page-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .gradient-panel {
    padding: 24px;
  }

  .rank-row a {
    grid-template-columns: 38px 72px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .detail-hero-inner,
  .page-hero {
    padding-top: 104px;
  }

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