
:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-panel: rgba(15, 23, 42, 0.78);
  --card: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --teal: #2dd4bf;
  --teal-deep: #0f766e;
  --amber: #f59e0b;
  --rose: #fb7185;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.14), transparent 34rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 32rem),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

main {
  padding-top: 76px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  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;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #14b8a6 52%, #0f766e);
  box-shadow: 0 14px 28px rgba(45, 212, 191, 0.22);
}

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

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

.nav-link,
.mobile-link {
  color: var(--muted-strong);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 9px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fff;
  background: rgba(45, 212, 191, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.global-search {
  position: relative;
  width: 240px;
}

.global-search input,
.hero-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(15, 23, 42, 0.82);
  border-radius: 999px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.global-search input {
  padding: 11px 16px;
}

.global-search input:focus,
.hero-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(45, 212, 191, 0.74);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, 88vw);
  max-height: 430px;
  overflow: auto;
  display: none;
  padding: 10px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

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

.search-result {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 9px;
  border-radius: 15px;
  color: var(--muted-strong);
}

.search-result:hover {
  background: rgba(148, 163, 184, 0.1);
  color: #fff;
}

.search-result img {
  width: 54px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

.search-result strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.search-result span,
.search-empty {
  color: var(--muted);
  font-size: 0.86rem;
}

.search-empty {
  padding: 18px;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: rgba(148, 163, 184, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
}

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

.mobile-link {
  padding: 12px 14px;
}

.container,
.hero,
.page-hero,
.content-section,
.detail-layout,
.player-section,
.text-section,
.related-section,
.pagination,
.category-cloud {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 42px 42px;
}

.hero-track {
  position: relative;
  min-height: 660px;
  border-radius: 34px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 42px;
  padding: 58px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.015);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 52%, rgba(2, 6, 23, 0.38) 100%),
    radial-gradient(circle at 22% 18%, rgba(45, 212, 191, 0.28), transparent 28rem);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 999px;
  color: #99f6e4;
  background: rgba(20, 184, 166, 0.12);
  font-size: 0.9rem;
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  max-width: 800px;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.85;
}

.hero-actions,
.card-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

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

.btn-primary {
  color: #042f2e;
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
  box-shadow: 0 18px 34px rgba(45, 212, 191, 0.24);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(203, 213, 225, 0.24);
  background: rgba(15, 23, 42, 0.58);
}

.hero-poster {
  align-self: center;
  justify-self: end;
  width: min(100%, 340px);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.hero-poster span {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #042f2e;
  background: #5eead4;
  font-weight: 900;
}

.hero-controls {
  position: absolute;
  left: 58px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

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

.hero-dot.is-active {
  background: #2dd4bf;
}

.hero-search {
  position: relative;
  max-width: 560px;
  margin-top: 26px;
}

.hero-search input {
  min-height: 54px;
  padding: 0 126px 0 20px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.hero-search button {
  position: absolute;
  top: 7px;
  right: 7px;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  color: #042f2e;
  background: #2dd4bf;
  font-weight: 900;
  cursor: pointer;
}

.content-section {
  padding: 58px 0 0;
}

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

.section-head h2,
.page-hero h1,
.text-section h2,
.player-section h2,
.related-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  letter-spacing: -0.035em;
}

.section-head p,
.page-hero p,
.text-section p,
.detail-info p,
.category-card p {
  color: var(--muted);
  line-height: 1.8;
}

.section-more {
  flex: 0 0 auto;
  color: #99f6e4;
  font-weight: 800;
}

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

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

.movie-card,
.compact-card,
.category-card,
.rank-card,
.detail-panel,
.player-shell,
.text-section,
.related-section,
.page-hero {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.58));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.045);
  opacity: 0.92;
}

.score-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-weight: 900;
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #99f6e4;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.movie-card h3,
.compact-card h3,
.rank-card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.compact-card h3 a:hover,
.rank-card h3 a:hover {
  color: #5eead4;
}

.movie-card p,
.rank-card p,
.compact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

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

.tag-row span,
.detail-tags a,
.detail-tags span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.13);
  font-size: 0.78rem;
}

.poster-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
}

.poster-scroll .movie-card {
  scroll-snap-align: start;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.feature-large {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #111827;
}

.feature-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.feature-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.94));
}

.feature-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
}

.feature-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.feature-copy p {
  margin: 0 0 20px;
  color: var(--muted-strong);
  line-height: 1.85;
}

.compact-list {
  display: grid;
  gap: 14px;
}

.compact-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
}

.compact-poster img {
  width: 96px;
  height: 136px;
  object-fit: cover;
  border-radius: 16px;
}

.compact-score {
  display: inline-block;
  margin-bottom: 8px;
  color: #fde68a;
  font-weight: 900;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 62px 82px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
}

.rank-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #042f2e;
  background: #2dd4bf;
  font-weight: 900;
}

.rank-card img {
  width: 82px;
  height: 112px;
  object-fit: cover;
  border-radius: 15px;
}

.rank-score {
  color: #fde68a;
  font-size: 1.18rem;
  font-weight: 900;
}

.category-cloud {
  padding-top: 42px;
}

.category-group {
  margin-bottom: 36px;
}

.category-group h2 {
  margin: 0 0 16px;
}

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

.category-card {
  display: block;
  padding: 20px;
  border-radius: 22px;
  transition: transform 0.2s ease, border 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.42);
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.page-hero {
  margin-top: 32px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(45, 212, 191, 0.18), transparent 26rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.68));
}

.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(150px, 0.45fr));
  gap: 12px;
  margin: 28px 0;
}

.filter-bar input,
.filter-bar select {
  height: 46px;
  padding: 0 15px;
}

.filter-bar select {
  appearance: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 44px 0 0;
  flex-wrap: wrap;
}

.page-link {
  min-width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.76);
}

.page-link.is-active,
.page-link:hover {
  color: #042f2e;
  border-color: transparent;
  background: #2dd4bf;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 34px;
  padding-top: 36px;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
}

.detail-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

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

.detail-meta a,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(148, 163, 184, 0.13);
}

.detail-meta .score-pill {
  color: #111827;
  background: #fbbf24;
  font-weight: 900;
}

.detail-info p {
  margin: 0 0 22px;
  font-size: 1.08rem;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 30px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.movie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.play-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  z-index: 3;
}

.play-mask strong {
  display: block;
  padding: 13px 20px;
  border-radius: 999px;
  color: #042f2e;
  background: #2dd4bf;
  box-shadow: 0 20px 44px rgba(45, 212, 191, 0.25);
}

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #042f2e;
  background: linear-gradient(135deg, #ccfbf1, #2dd4bf);
  font-size: 2rem;
  box-shadow: 0 18px 46px rgba(45, 212, 191, 0.3);
}

.player-shell.is-playing .play-mask {
  opacity: 0;
  pointer-events: none;
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  display: none;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fecdd3;
  background: rgba(127, 29, 29, 0.78);
}

.player-shell.has-error .player-message {
  display: block;
}

.text-section,
.related-section {
  margin-top: 32px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
}

.text-section p {
  margin: 18px 0 0;
  color: var(--muted-strong);
  line-height: 1.95;
  font-size: 1.03rem;
}

.related-section .movie-grid {
  margin-top: 22px;
}

.prev-next {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.prev-next a {
  flex: 1;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.68);
}

.prev-next a:hover {
  color: #fff;
  border-color: rgba(45, 212, 191, 0.4);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 80px auto 0;
  padding: 38px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid p,
.footer-links a,
.footer-bottom {
  color: var(--muted);
  line-height: 1.75;
}

.footer-grid h3 {
  margin: 0 0 12px;
}

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

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

.footer-bottom {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.92rem;
}

[data-movie-card].is-hidden {
  display: none;
}

.no-results {
  display: none;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.62);
}

.no-results.is-visible {
  display: block;
}

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

  .menu-toggle {
    display: block;
  }

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

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

  .hero-slide {
    padding: 38px;
  }

  .hero-poster {
    justify-self: start;
    width: min(260px, 70vw);
  }

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

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

@media (max-width: 720px) {
  main {
    padding-top: 66px;
  }

  .header-inner {
    height: 64px;
    gap: 10px;
  }

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

  .global-search {
    display: none;
  }

  .hero {
    width: 100%;
    min-height: auto;
    border-radius: 0;
  }

  .hero-track {
    min-height: 720px;
    border-radius: 0;
  }

  .hero-slide {
    padding: 28px 18px 72px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.4rem, 16vw, 4.4rem);
  }

  .hero-controls {
    left: 18px;
    bottom: 24px;
  }

  .hero-search input {
    padding-right: 18px;
  }

  .hero-search button {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .content-section,
  .category-cloud,
  .detail-layout,
  .player-section,
  .text-section,
  .related-section,
  .page-hero {
    width: min(100% - 24px, 1180px);
  }

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

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

  .card-body {
    padding: 13px;
  }

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

  .filter-bar,
  .footer-grid,
  .rank-card {
    grid-template-columns: 1fr;
  }

  .rank-card img {
    display: none;
  }

  .detail-panel,
  .text-section,
  .related-section,
  .page-hero {
    border-radius: 24px;
  }

  .prev-next {
    flex-direction: column;
  }
}
