:root {
  --brand-orange: #f97316;
  --brand-amber: #f59e0b;
  --brand-gold: #facc15;
  --brand-dark: #111827;
  --brand-soft: #fff7ed;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --line-soft: rgba(15, 23, 42, 0.08);
  --shadow-card: 0 22px 45px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 28px 65px rgba(249, 115, 22, 0.22);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background: linear-gradient(180deg, #fff7ed 0%, #f8fafc 26%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-amber), var(--brand-gold));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.28);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-orange);
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-4deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand-copy strong {
  font-size: 22px;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.header-search {
  flex: 1;
  max-width: 430px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.06);
}

.header-search input,
.mobile-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  padding: 12px 16px;
}

.header-search button,
.mobile-search button {
  border: 0;
  background: var(--brand-orange);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  margin-right: 4px;
  cursor: pointer;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.nav-link {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 24px;
}

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

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

.mobile-search {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  margin-bottom: 12px;
  padding: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 4px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.hero-shell {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 430px);
  align-items: center;
  gap: 46px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

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

.hero-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.26;
  filter: blur(5px) saturate(1.15);
  transform: scale(1.06);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle at 18% 28%, rgba(249, 115, 22, 0.48), transparent 30%), radial-gradient(circle at 86% 18%, rgba(250, 204, 21, 0.38), transparent 24%), linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.68));
}

.hero::after {
  background: linear-gradient(0deg, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0) 20%);
  top: auto;
  height: 120px;
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #fed7aa;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-summary {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.tag-row span {
  background: #fff7ed;
  color: #c2410c;
  padding: 4px 8px;
  font-size: 12px;
}

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

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

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

.btn-primary {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-amber));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.hero-poster {
  display: block;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(17, 24, 39, 0.78);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 38px;
  background: #ffffff;
}

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

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

.section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  max-width: 680px;
  color: var(--text-muted);
}

.section-more {
  color: var(--brand-orange);
  font-weight: 900;
  white-space: nowrap;
}

.category-chip-grid,
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.category-chip,
.category-overview-card {
  display: block;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line-soft);
  padding: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-chip:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.38);
  box-shadow: var(--shadow-hover);
}

.category-chip strong,
.category-overview-card strong {
  display: block;
  color: #111827;
  font-size: 20px;
}

.category-chip span,
.category-overview-card em {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-style: normal;
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

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

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

.poster-badge,
.poster-score {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 28px;
  padding: 0 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.poster-badge {
  left: 12px;
  background: rgba(249, 115, 22, 0.88);
}

.poster-score {
  right: 12px;
  background: rgba(17, 24, 39, 0.78);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.movie-card-body strong {
  color: #111827;
  font-size: 18px;
  line-height: 1.28;
}

.movie-card-body em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 14px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9ca3af;
  font-size: 13px;
}

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

.feature-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 240px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x proximity;
}

.rail-card {
  scroll-snap-align: start;
}

.rank-panel {
  position: sticky;
  top: 102px;
  border-radius: var(--radius-xl);
  background: #111827;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.rank-panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.rank-panel-title h2 {
  margin: 0;
  font-size: 22px;
}

.rank-panel-title a {
  color: #fed7aa;
  font-weight: 900;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-list.full .rank-item {
  background: #ffffff;
  color: #111827;
  border: 1px solid var(--line-soft);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.rank-item:hover {
  transform: translateX(4px);
  background: rgba(249, 115, 22, 0.16);
}

.rank-list.full .rank-item:hover {
  background: #fff7ed;
}

.rank-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
  color: #ffffff;
  font-weight: 900;
}

.rank-thumb {
  overflow: hidden;
  border-radius: 12px;
  background: #fed7aa;
}

.rank-thumb img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.rank-info {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.rank-info strong,
.rank-info em,
.rank-info span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 13px;
}

.compact .rank-info em {
  color: rgba(255, 255, 255, 0.66);
}

.rank-info span {
  color: #9ca3af;
  font-size: 12px;
}

.rank-heat {
  color: var(--brand-orange);
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #111827;
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.simple-hero::before,
.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.5), transparent 32%), linear-gradient(135deg, #111827, #431407 55%, #92400e);
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--category-cover);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(4px);
  transform: scale(1.04);
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.category-overview-card {
  min-height: 260px;
}

.category-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.category-collage img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: #fed7aa;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 14px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--line-soft);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f9fafb;
  color: #111827;
  outline: 0;
  padding: 12px 14px;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-status {
  margin: 18px 0 24px;
  color: var(--text-muted);
  font-weight: 800;
}

.movie-card.is-hidden,
.rank-item.is-hidden {
  display: none;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 10% 18%, rgba(249, 115, 22, 0.42), transparent 28%), linear-gradient(135deg, #0f172a, #111827 58%, #431407);
}

.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.detail-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.detail-stats span {
  display: grid;
  gap: 3px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.detail-stats strong {
  color: #ffffff;
  font-size: 20px;
}

.player-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.28);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.player-veil {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.74), rgba(249, 115, 22, 0.38));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-circle {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-amber));
  color: #ffffff;
  font-size: 34px;
  box-shadow: 0 22px 44px rgba(249, 115, 22, 0.42);
}

.player-veil strong {
  font-size: 24px;
}

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

.detail-text article {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--line-soft);
  padding: 26px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.detail-text h2 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.detail-text p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
}

.info-list div {
  border-radius: 16px;
  background: #fff7ed;
  padding: 14px;
}

.info-list dt {
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
}

.info-list dd {
  margin: 4px 0 0;
  color: #111827;
  font-weight: 800;
}

.site-footer {
  margin-top: 48px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937, #0f172a);
}

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

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  max-width: 540px;
  color: #9ca3af;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  text-align: center;
  color: #9ca3af;
}

@media (max-width: 980px) {
  .site-header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy small,
  .header-search,
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-shell {
    min-height: 720px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
  }

  .hero-poster {
    width: min(300px, 80%);
    margin: 0 auto;
  }

  .split-section,
  .detail-shell,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

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

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

@media (max-width: 640px) {
  .content-section {
    width: min(100% - 24px, 1180px);
    padding: 38px 0;
  }

  .section-heading {
    display: block;
  }

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

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

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

  .movie-card-body strong {
    font-size: 15px;
  }

  .movie-card-body em {
    display: none;
  }

  .hero-shell {
    min-height: 680px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.04em;
  }

  .filter-panel,
  .detail-stats,
  .info-list {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 34px 48px minmax(0, 1fr);
  }

  .rank-heat {
    display: none;
  }

  .footer-inner {
    padding: 36px 0;
  }
}
