:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.46);
  --border: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --amber: #f59e0b;
  --amber-2: #d97706;
  --cyan: #22d3ee;
  --blue: #60a5fa;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.logo {
  font-size: 22px;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber), #fde68a);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.42);
}

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

.main-nav a,
.mobile-nav a {
  color: #cbd5e1;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a:hover {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.16);
}

.search-box {
  position: relative;
  margin-left: auto;
  width: min(280px, 32vw);
}

.search-box.wide {
  width: min(520px, 100%);
  margin-left: 0;
}

.search-box input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #ffffff;
  outline: none;
  background: rgba(15, 23, 42, 0.84);
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(245, 158, 11, 0.62);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.search-results {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
}

.search-results.open {
  display: block;
}

.search-result-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.search-result-item:last-child {
  border-bottom: 0;
}

.search-result-item:hover {
  background: rgba(245, 158, 11, 0.12);
}

.search-result-item img {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.search-result-item strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.search-result-item span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.84);
  padding: 9px 12px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

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

.hero {
  position: relative;
  height: 70vh;
  min-height: 540px;
  overflow: hidden;
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay.one {
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.82) 48%, rgba(2, 6, 23, 0.42) 100%);
}

.hero-overlay.two {
  background: linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.42) 46%, rgba(2, 6, 23, 0.92) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(680px, 100%);
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 88px);
}

.hero p,
.page-hero p,
.detail-copy p {
  color: #cbd5e1;
  line-height: 1.85;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 18px;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  color: #cbd5e1;
}

.year-badge,
.detail-meta span,
.movie-year {
  border: 1px solid rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.16);
}

.year-badge,
.detail-meta span {
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #111827;
  background: linear-gradient(135deg, var(--amber), #fde68a);
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.28);
}

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

.ghost-button {
  color: #ffffff;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.58);
}

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

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

.hero-dot.active {
  background: var(--amber);
}

.quick-search {
  margin-top: -42px;
  position: relative;
  z-index: 10;
}

.quick-search-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.quick-search p {
  margin: 0;
  color: var(--muted);
}

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

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.03em;
}

.section-icon {
  color: var(--amber);
}

.section-heading.blue .section-icon {
  color: var(--blue);
}

.section-heading.cyan .section-icon {
  color: var(--cyan);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.48), transparent);
}

.section-heading.blue .section-line {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.38), transparent);
}

.section-heading.cyan .section-line {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.38), transparent);
}

.section-more {
  color: #fbbf24;
  font-size: 14px;
  white-space: nowrap;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.44);
  background: rgba(30, 41, 59, 0.68);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.12);
}

.movie-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.movie-thumb.small {
  width: 128px;
  height: 176px;
  flex: 0 0 auto;
  aspect-ratio: auto;
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 58%);
}

.movie-year {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  backdrop-filter: blur(8px);
}

.movie-play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 48px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: opacity 0.2s ease;
}

.movie-card-link:hover .movie-play {
  opacity: 1;
}

.movie-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 18px;
}

.movie-caption h3,
.movie-info h3 {
  margin: 0 0 10px;
  color: #ffffff;
  line-height: 1.25;
}

.movie-caption h3 {
  font-size: 18px;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.movie-tags span,
.tag-cloud a {
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.76);
  padding: 5px 8px;
  font-size: 12px;
}

.movie-card.horizontal .movie-card-link {
  display: flex;
}

.movie-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.movie-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.category-card {
  position: relative;
  min-height: 160px;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.58;
}

.category-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), transparent);
}

.category-card strong,
.category-card span {
  display: block;
}

.category-card strong {
  font-size: 20px;
}

.category-card span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 56px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.54);
  padding: 10px;
}

.rank-row:hover,
.ranking-item a:hover {
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(30, 41, 59, 0.72);
}

.rank-num,
.ranking-number {
  color: var(--amber);
  font-weight: 950;
}

.rank-row img {
  width: 56px;
  height: 74px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-title {
  font-weight: 800;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.20), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.12), transparent 32%),
    rgba(15, 23, 42, 0.72);
}

.page-hero.slim h1 {
  font-size: clamp(38px, 6vw, 70px);
}

.page-hero.slim p {
  max-width: 760px;
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--amber);
}

.pill-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0 4px;
}

.nav-pill {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.64);
  padding: 9px 14px;
  font-size: 14px;
}

.nav-pill:hover,
.nav-pill.active {
  color: #111827;
  border-color: rgba(245, 158, 11, 0.7);
  background: linear-gradient(135deg, var(--amber), #fde68a);
}

.category-overview-card a {
  display: block;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.42);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-body {
  padding: 18px;
}

.category-overview-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-overview-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.category-overview-body span {
  color: var(--amber);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.70);
}

.filter-panel label span {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

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

.ranking-item a {
  display: grid;
  grid-template-columns: 72px 74px 1fr 60px;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.54);
  padding: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ranking-item img {
  width: 74px;
  height: 98px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-item h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.ranking-item p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.65;
}

.ranking-item strong {
  color: #fde68a;
  font-size: 22px;
}

.detail-main {
  overflow: hidden;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 70px 0 42px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.82) 50%, rgba(2, 6, 23, 0.96) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.42) 100%),
    var(--poster) center / cover;
  filter: saturate(1.1);
}

.detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  font-size: clamp(40px, 6vw, 76px);
}

.detail-copy p {
  max-width: 760px;
  font-size: 18px;
}

.player-section {
  margin-top: -40px;
  position: relative;
  z-index: 12;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.18), rgba(0, 0, 0, 0.58));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  font-size: 36px;
  background: linear-gradient(135deg, var(--amber), #fde68a);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.36);
}

.player-overlay span:last-child {
  font-size: 18px;
  font-weight: 900;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.detail-article {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.68);
  padding: clamp(22px, 4vw, 42px);
}

.detail-article h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

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

.detail-article p {
  margin: 0;
  color: #cbd5e1;
  line-height: 2;
  font-size: 17px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a:hover {
  color: #111827;
  background: #fbbf24;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.78);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
}

.footer-logo {
  font-size: 22px;
}

.site-footer p {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: #cbd5e1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
  border-color: rgba(245, 158, 11, 0.45);
}

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

@media (max-width: 980px) {
  .main-nav,
  .header-inner > .search-box {
    display: none;
  }

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

  .quick-search-inner,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .rank-list {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container,
  .content-section {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    height: 64px;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    min-height: 570px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero p,
  .detail-copy p {
    font-size: 16px;
  }

  .quick-search {
    margin-top: -24px;
  }

  .quick-search-inner {
    padding: 20px;
  }

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

  .movie-caption {
    padding: 12px;
  }

  .movie-caption h3 {
    font-size: 15px;
  }

  .movie-tags span {
    font-size: 11px;
    padding: 4px 6px;
  }

  .filter-panel,
  .ranking-item a {
    grid-template-columns: 1fr;
  }

  .ranking-number {
    font-size: 22px;
  }

  .ranking-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .detail-hero {
    min-height: auto;
    padding: 42px 0;
  }

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

  .detail-copy h1,
  .page-hero.slim h1 {
    font-size: 38px;
  }

  .player-section {
    margin-top: 0;
  }

  .play-circle {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }
}
