:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-solid: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --blue: #38bdf8;
  --blue-deep: #2563eb;
  --cyan: #22d3ee;
  --gold: #fbbf24;
  --danger: #fb7185;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.26), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(34, 211, 238, 0.18), transparent 26rem),
    linear-gradient(180deg, #020617 0%, #0f172a 54%, #020617 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan));
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
}

.brand-text {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #60a5fa, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #e2e8f0;
  font-size: 0.95rem;
}

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

.desktop-nav a:hover {
  color: #7dd3fc;
}

.header-search {
  display: flex;
  align-items: center;
  min-width: 280px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(125, 211, 252, 0.18);
  overflow: hidden;
}

.header-search input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  padding: 10px 12px 10px 18px;
}

.header-search button {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan));
  padding: 10px 18px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

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

.mobile-panel a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #dbeafe;
}

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

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.46), rgba(2, 6, 23, 0.9)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.12) 50%, rgba(2, 6, 23, 0.25) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 116px;
}

.hero-copy {
  width: min(780px, 100%);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 12px;
  color: #7dd3fc;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: #dbeafe;
  font-size: 1.08rem;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(125, 211, 252, 0.22);
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan));
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.34);
}

.btn-ghost {
  color: #e0f2fe;
  border: 1px solid rgba(125, 211, 252, 0.34);
  background: rgba(15, 23, 42, 0.5);
}

.full-btn {
  width: 100%;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: rgba(15, 23, 42, 0.52);
  font-size: 2rem;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #67e8f9;
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(760px, calc(100% - 32px));
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.hero-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  padding: 18px 24px;
}

.hero-search button {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan));
  padding: 0 28px;
  font-weight: 800;
}

.stats-strip {
  border-block: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stats-grid div {
  padding: 22px 16px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: white;
  font-size: 1.75rem;
  line-height: 1.1;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-section,
.page-main {
  padding-block: 58px;
}

.page-main {
  min-height: calc(100vh - var(--header-height));
}

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

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-more,
.text-link {
  color: #7dd3fc;
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 18px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(34, 211, 238, 0.22)),
    #111827;
}

.poster-frame img,
.rank-poster img,
.category-tile img,
.detail-poster img,
.detail-backdrop img,
.category-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-frame img,
.category-tile img,
.rank-poster img {
  transition: transform 0.32s ease, opacity 0.2s ease;
}

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

img.image-error {
  opacity: 0;
}

.score-badge,
.type-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.score-badge {
  top: 10px;
  left: 10px;
  color: #172554;
  background: rgba(251, 191, 36, 0.96);
}

.type-badge {
  right: 10px;
  bottom: 10px;
  color: white;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.28;
}

.movie-card h3 a:hover {
  color: #7dd3fc;
}

.movie-desc {
  min-height: 3.1em;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.movie-card-compact .movie-desc {
  min-height: 2.9em;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: #cbd5e1;
  font-size: 0.78rem;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
}

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

.category-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111827;
}

.category-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.88));
}

.category-tile strong,
.category-tile em {
  position: absolute;
  left: 18px;
  z-index: 2;
}

.category-tile strong {
  bottom: 44px;
  font-size: 1.35rem;
}

.category-tile em {
  bottom: 20px;
  color: #bae6fd;
  font-style: normal;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 64px 78px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #020617;
  background: linear-gradient(135deg, #fbbf24, #fde68a);
  font-weight: 950;
}

.rank-poster {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
}

.rank-info h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.rank-info p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.compact-rank .rank-row:nth-child(n + 7) {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.breadcrumb a {
  color: #7dd3fc;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #64748b;
}

.page-hero {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(34, 211, 238, 0.08)),
    rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.small-hero,
.category-hero {
  margin-bottom: 28px;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-bar label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.86rem;
  font-weight: 700;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 14px;
  outline: 0;
  color: white;
  background: rgba(2, 6, 23, 0.68);
  padding: 0 14px;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(125, 211, 252, 0.58);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.empty-state,
.search-summary {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.72);
}

.search-filter {
  grid-template-columns: 1fr 160px 150px 160px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.category-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 90px);
  gap: 4px;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
}

.category-overview-card h2 {
  margin: 0 0 8px;
}

.category-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.detail-main {
  position: relative;
  overflow: hidden;
}

.detail-backdrop {
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  z-index: -1;
  overflow: hidden;
  opacity: 0.4;
}

.detail-backdrop img {
  filter: blur(12px) saturate(1.1);
  transform: scale(1.08);
}

.detail-backdrop span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.25), #020617 88%);
}

.detail-wrap {
  padding-block: 34px 70px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.detail-poster {
  display: grid;
  gap: 16px;
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #111827;
  box-shadow: var(--shadow);
}

.detail-info {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: var(--shadow);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 1.08rem;
}

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

.detail-meta-grid div {
  padding: 16px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.42);
}

.detail-meta-grid strong {
  display: block;
  color: #fde68a;
  font-size: 1.3rem;
}

.detail-meta-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.info-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  color: #f8fafc;
}

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

.player-section,
.content-section,
.related-section {
  margin-top: 42px;
}

.compact-heading {
  margin-bottom: 16px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), rgba(2, 6, 23, 0.58));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-deep), var(--cyan));
  box-shadow: 0 18px 52px rgba(37, 99, 235, 0.45);
  font-size: 2rem;
}

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

.player-message {
  position: absolute;
  left: 18px;
  bottom: 12px;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(2, 6, 23, 0.6);
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.prose-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.74);
}

.prose-card h2 {
  margin: 0 0 12px;
}

.prose-card p {
  margin: 0;
  color: #dbeafe;
  white-space: pre-line;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  padding-block: 34px;
}

.footer-logo {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

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

.footer-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbeafe;
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .header-search {
    min-width: 220px;
  }

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

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

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

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero-control {
    display: none;
  }

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

  .hero-search button {
    min-height: 48px;
  }

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

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

  .section-heading {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 12px;
  }

  .filter-bar,
  .search-filter {
    grid-template-columns: 1fr;
  }

  .category-overview-grid,
  .content-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .brand-text {
    font-size: 1.1rem;
  }

  .hero {
    height: 76vh;
    min-height: 620px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 16vw, 4rem);
  }

  .hero p {
    font-size: 0.96rem;
  }

  .page-section,
  .page-main {
    padding-block: 36px;
  }

  .page-hero,
  .detail-info,
  .prose-card {
    padding: 22px;
    border-radius: 22px;
  }

  .grid-6,
  .grid-5,
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .movie-desc,
  .tag-row {
    display: none;
  }

  .rank-row {
    grid-template-columns: 42px 62px 1fr;
    gap: 10px;
  }

  .rank-num {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .rank-info p {
    display: none;
  }

  .detail-meta-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .player-message {
    display: none;
  }
}
