:root {
  --bg: #f6f7fb;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --dark: #0f172a;
  --red: #ef4444;
  --orange: #f97316;
  --gold: #f59e0b;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 48%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, #0f172a, #1e293b 45%, #0f172a);
  color: #fff;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.28);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #ef4444, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.35);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.nav-link {
  opacity: 0.84;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #f87171;
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.mobile-nav .nav-link,
.mobile-category-row a {
  display: inline-flex;
  margin: 14px 18px 0 0;
  color: #e5e7eb;
}

.mobile-category-row {
  margin-top: 8px;
  font-size: 14px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 10% 10%, rgba(239, 68, 68, 0.45), transparent 35%), linear-gradient(120deg, #0f172a 0%, #7f1d1d 52%, #0f172a 100%);
  padding: 56px 0 44px;
}

.hero-glow {
  position: absolute;
  inset: auto 8% -140px auto;
  width: 420px;
  height: 420px;
  background: rgba(249, 115, 22, 0.28);
  filter: blur(90px);
  border-radius: 999px;
}

.hero-carousel,
.hero-focus {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-carousel {
  min-height: 475px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fecaca;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #f87171, #fb923c, #fca5a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h2 {
  margin: 18px 0 10px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.1;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.24);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

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

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

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, #ef4444, #f97316);
  box-shadow: 0 18px 34px rgba(239, 68, 68, 0.34);
}

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

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #111827, #7f1d1d);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.hero-poster:hover img {
  transform: scale(1.08);
}

.hero-poster::after,
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 55%);
}

.hero-poster span,
.play-chip {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 16px 34px rgba(239, 68, 68, 0.34);
  z-index: 2;
}

.hero-poster span {
  right: 24px;
  bottom: 24px;
  width: 66px;
  height: 66px;
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 28px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: #f97316;
}

.hero-focus {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.search-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-box {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: #f8fafc;
  color: #64748b;
}

.search-box input,
.search-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
}

.search-panel select {
  max-width: 190px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.intro-search {
  margin-top: -30px;
  position: relative;
  z-index: 4;
}

.section-block,
.split-section,
.overview-grid,
.ranking-featured,
.rank-page-list,
.detail-content,
.player-section {
  padding: 56px 0 0;
}

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

.section-heading span {
  display: block;
  color: #ef4444;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.section-heading a {
  color: #ef4444;
  font-weight: 900;
}

.section-heading.light h2,
.section-heading.light a {
  color: #fff;
}

.section-heading.compact {
  align-items: center;
}

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

.movie-card {
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.16);
}

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

.poster-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #7f1d1d);
}

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

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

.play-chip {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  color: #fff;
  background: #ef4444;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

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

.movie-card-body h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 48px;
  margin: 0 0 9px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover h2 {
  color: #dc2626;
}

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

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.meta-row span:first-child {
  color: #dc2626;
  font-weight: 900;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  color: #dc2626;
  background: #fee2e2;
  border-color: #fecaca;
}

.category-section {
  margin-top: 64px;
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(120deg, #0f172a, #1e3a8a 50%, #0f766e);
}

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

.category-tile,
.category-overview-card a {
  display: block;
  min-height: 100%;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.category-tile h2,
.category-overview-card h2 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.category-stack,
.category-cover-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.category-stack img,
.category-cover-cloud img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 13px;
  object-fit: cover;
  background: linear-gradient(135deg, #111827, #7f1d1d);
}

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

.rank-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #111827, #0f172a);
  color: #fff;
  box-shadow: var(--shadow);
}

.rank-panel h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

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

.compact-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  background: rgba(239, 68, 68, 0.18);
}

.compact-card img {
  width: 86px;
  aspect-ratio: 16 / 10;
  border-radius: 13px;
  object-fit: cover;
  background: linear-gradient(135deg, #111827, #7f1d1d);
}

.compact-card h3 {
  overflow: hidden;
  margin: 0 0 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.compact-card p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.compact-card span:not(.rank-num) {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.rank-num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  border-radius: 10px;
  font-weight: 900;
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.35), transparent 30%), linear-gradient(120deg, #0f172a, #7f1d1d 54%, #0f172a);
  padding: 72px 0;
}

.page-hero .search-panel {
  margin-top: 26px;
  max-width: 860px;
}

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

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

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

.category-overview-card a {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #111827, #1e293b 55%, #7f1d1d);
}

.category-overview-card span {
  color: #fca5a5;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.ranking-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 22px;
  color: #fff;
  border-radius: 28px;
  background: #111827;
  box-shadow: var(--shadow);
}

.ranking-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.35s ease;
}

.ranking-hero-card:hover img {
  transform: scale(1.06);
}

.ranking-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 58%);
}

.ranking-hero-card div {
  position: relative;
  z-index: 2;
}

.ranking-hero-card span {
  color: #fca5a5;
  font-weight: 900;
}

.ranking-hero-card h2 {
  margin: 10px 0;
  font-size: 26px;
}

.ranking-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.rank-list.wide .compact-card {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.rank-list.wide .compact-card p,
.rank-list.wide .compact-card span:not(.rank-num) {
  color: #64748b;
}

.detail-hero {
  color: #fff;
  background: radial-gradient(circle at 20% 10%, rgba(239, 68, 68, 0.34), transparent 36%), linear-gradient(120deg, #0f172a, #111827 60%, #7f1d1d);
  padding: 56px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #111827, #7f1d1d);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

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

.detail-info h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.detail-info p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.detail-tags span,
.detail-meta span {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.28);
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #020617;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(239, 68, 68, 0.18), rgba(0, 0, 0, 0.72));
}

.player-cover span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  border-radius: 999px;
  box-shadow: 0 24px 48px rgba(239, 68, 68, 0.38);
  font-size: 30px;
}

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

.detail-content article {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.detail-content h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-content p {
  margin: 0 0 24px;
  color: #475467;
  font-size: 17px;
  line-height: 1.9;
}

.hidden-card {
  display: none !important;
}

.site-footer {
  margin-top: 72px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

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

.footer-grid h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.footer-grid p,
.footer-grid li {
  color: #94a3b8;
  line-height: 1.8;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: #f87171;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

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

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

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

  .rank-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    font-size: 22px;
  }

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

  .hero-carousel {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .hero-controls {
    bottom: 0;
  }

  .movie-grid,
  .overview-grid,
  .ranking-featured,
  .category-grid,
  .hero-focus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .search-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .search-panel select {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .container,
  .site-nav,
  .mobile-nav,
  .hero-carousel,
  .hero-focus,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

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

  .movie-grid,
  .overview-grid,
  .ranking-featured,
  .category-grid,
  .hero-focus {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    gap: 24px;
  }

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

  .compact-card {
    grid-template-columns: 74px minmax(0, 1fr) auto;
  }

  .compact-card img {
    width: 74px;
  }

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