:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --card: rgba(15, 23, 42, 0.82);
  --card-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --amber: #f59e0b;
  --orange: #f97316;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.is-nav-open {
  overflow: hidden;
}

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: 60;
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.26);
}

.brand-name {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #fbbf24, #fb923c, #f59e0b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link,
.nav-dropdown-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted-strong);
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link-active,
.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(245, 158, 11, 0.14);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button {
  border: 0;
  background: transparent;
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  width: 100%;
  justify-content: flex-start;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.82);
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

.hero-slider {
  position: relative;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.88) 100%),
    linear-gradient(0deg, #020617 0%, transparent 38%);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) saturate(1.18);
  transform: scale(1.12);
  opacity: 0.42;
}

.hero-grid {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
  padding: 70px 0 110px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.12;
  color: #fed7aa;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.82;
}

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

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

.hero-tags span,
.detail-tags span,
.card-tags span,
.pill-link {
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.1);
}

.hero-tags span,
.detail-tags span,
.pill-link {
  padding: 8px 13px;
}

.card-tags span {
  padding: 5px 9px;
  font-size: 0.78rem;
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.22s ease;
}

.primary-button {
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 48px rgba(249, 115, 22, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(249, 115, 22, 0.38);
}

.ghost-button {
  min-height: 50px;
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.5);
}

.ghost-button:hover,
.text-button:hover {
  border-color: rgba(251, 191, 36, 0.45);
  color: #fbbf24;
}

.text-button {
  min-height: 38px;
  color: #fbbf24;
}

.hero-poster {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(14px);
}

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

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

.hero-dot.is-active {
  width: 38px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

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

.section-tight {
  padding-top: 36px;
}

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

.section-head h2,
.footer-links h2,
.article-content h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(18px);
}

.filter-panel-compact {
  margin-top: 0;
}

.filter-title {
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
}

.filter-controls label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: #fff;
  background: rgba(2, 6, 23, 0.76);
  outline: 0;
  padding: 0 14px;
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-result {
  min-height: 20px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

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

.movie-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  transition: 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.38);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.95);
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.055);
  filter: saturate(1.15);
}

.poster-year,
.poster-play {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.poster-year {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.poster-play {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

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

.movie-card-body h3 {
  margin: 0;
  min-height: 3rem;
  font-size: 1.06rem;
  line-height: 1.35;
}

.movie-card-body h3 a:hover,
.ranking-content h2 a:hover,
.category-preview-links a:hover {
  color: #fbbf24;
}

.movie-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.movie-desc {
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.64;
}

.card-tags {
  margin-top: 14px;
}

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

.movie-card-compact .movie-card-body h3 {
  min-height: auto;
  font-size: 0.96rem;
}

.movie-card-compact .movie-desc,
.movie-card-compact .card-tags {
  display: none;
}

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

.category-card,
.category-overview-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.58));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  transition: 0.22s ease;
}

.category-card {
  display: block;
  padding: 22px;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.36);
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fbbf24;
  font-weight: 800;
}

.category-icon,
.category-main-link span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.category-card h3,
.category-main-link h2 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
}

.category-card p,
.category-main-link p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.68;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-samples span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.22), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(249, 115, 22, 0.15), transparent 28rem);
  pointer-events: none;
}

.page-hero > div {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero-slim {
  padding-bottom: 42px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.pill-row {
  margin-top: 24px;
}

.pill-link:hover {
  border-color: rgba(251, 191, 36, 0.55);
  color: #fff;
}

.category-overview-card {
  padding: 22px;
}

.category-main-link {
  display: block;
}

.category-preview-links {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.category-preview-links a {
  color: var(--muted-strong);
  line-height: 1.45;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 62px 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  transition: 0.22s ease;
}

.ranking-row:hover {
  border-color: rgba(251, 191, 36, 0.34);
  background: rgba(15, 23, 42, 0.95);
}

.ranking-number {
  color: #fbbf24;
  font-weight: 900;
  font-size: 1.35rem;
  text-align: center;
}

.ranking-cover {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.ranking-cover img {
  width: 86px;
  aspect-ratio: 2 / 2.8;
  object-fit: cover;
}

.ranking-content h2 {
  margin: 0;
  font-size: 1.15rem;
}

.ranking-content p:last-child {
  margin: 10px 0 0;
  color: var(--muted-strong);
  line-height: 1.62;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 72px 0 62px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.72)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.12) 62%);
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.22);
  transform: scale(1.12);
  opacity: 0.42;
}

.detail-layout {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 38px;
  align-items: center;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  border: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.84)),
    rgba(2, 6, 23, 0.2);
  transition: 0.22s ease;
}

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

.play-circle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 22px 60px rgba(249, 115, 22, 0.34);
  font-size: 1.85rem;
}

.player-overlay strong {
  max-width: 88%;
  font-size: 1.1rem;
  text-align: center;
}

.detail-copy {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(18px);
}

.detail-copy h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

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

.detail-meta-grid span {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.38);
}

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

.article-content {
  max-width: 900px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
}

.article-content h2 + p {
  margin-top: 14px;
}

.article-content h2:not(:first-child) {
  margin-top: 28px;
}

.article-content p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.04rem;
  line-height: 1.9;
}

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

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

.footer-brand p {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  line-height: 1.75;
}

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

.footer-links a {
  color: var(--muted-strong);
}

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

.footer-bottom {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 32px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

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

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

  .hero-poster {
    max-width: 360px;
    transform: none;
  }
}

@media (max-width: 820px) {
  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    background: rgba(2, 6, 23, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: 0.25s ease;
  }

  body.is-nav-open .main-nav {
    transform: translateY(0);
  }

  .nav-link,
  .nav-dropdown-menu a {
    justify-content: center;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
    box-shadow: none;
  }

  .hero,
  .hero-slider,
  .hero-grid {
    min-height: 760px;
  }

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

  .section-head,
  .footer-inner {
    display: grid;
  }

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

  .ranking-row {
    grid-template-columns: 46px 74px minmax(0, 1fr);
  }

  .ranking-row .text-button {
    grid-column: 3;
    justify-content: flex-start;
  }

  .ranking-cover img {
    width: 74px;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .section,
  .page-hero > div,
  .detail-layout,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1220px);
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero-grid {
    padding-top: 46px;
    gap: 28px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 14vw, 3.4rem);
  }

  .hero-copy p,
  .page-hero p,
  .detail-one-line {
    font-size: 1rem;
  }

  .movie-grid,
  .movie-grid-wide,
  .movie-grid-compact,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .movie-card-body h3 {
    min-height: auto;
    font-size: 0.96rem;
  }

  .movie-desc,
  .card-tags {
    display: none;
  }

  .detail-hero {
    padding-top: 34px;
  }

  .detail-copy,
  .article-content {
    padding: 20px;
  }

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

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