:root {
  --color-primary: #0f766e;
  --color-primary-dark: #115e59;
  --color-accent: #2563eb;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-soft: #f8fafc;
  --color-card: #ffffff;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-hover: 0 24px 70px rgba(15, 118, 110, 0.20);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  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: #f3f4f6;
  color: var(--color-text);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.80);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.site-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.35);
  font-size: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav-link,
.nav-dropdown-button {
  color: #374151;
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
}

.site-nav-link:hover,
.nav-dropdown-button:hover {
  color: var(--color-primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 190px;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #4b5563;
  font-size: 14px;
}

.nav-dropdown-panel a:hover {
  color: var(--color-primary);
  background: #ecfdf5;
}

.header-search,
.mobile-search,
.large-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.large-search-form input {
  width: 240px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 10px 14px;
  outline: none;
  background: #ffffff;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.header-search button,
.mobile-search button,
.large-search-form button,
.filter-panel button {
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: #f3f4f6;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

.mobile-menu.is-open {
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  padding: 10px 0;
  color: #374151;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: #020617;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(20, 184, 166, 0.35), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(37, 99, 235, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.78));
  z-index: 1;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  z-index: 2;
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.05);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 680px;
  padding: 84px 24px 108px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  color: #ffffff;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #5eead4;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-summary {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d1d5db;
  font-size: 18px;
}

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

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 800;
  color: #0f766e;
  background: #ccfbf1;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.34);
}

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

.detail-actions .btn-ghost {
  color: #111827;
  background: #ffffff;
  border-color: var(--color-line);
}

.hero-cover {
  position: relative;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(1deg);
}

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

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

.hero-cover span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  border-radius: 999px;
  padding: 12px 18px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(15, 118, 110, 0.92);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 28px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #5eead4;
}

.stats-strip {
  max-width: 1180px;
  margin: -44px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 24px;
}

.stats-strip div {
  border-radius: 22px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.stats-strip strong {
  display: block;
  color: var(--color-primary);
  font-size: 34px;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-weight: 700;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

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

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

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

.section-more {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-weight: 800;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #0f172a;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.80));
}

.category-card strong,
.category-card small {
  position: absolute;
  left: 18px;
  color: #ffffff;
}

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

.category-card small {
  bottom: 20px;
  color: #d1d5db;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--color-card);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.78);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0f766e, #2563eb);
}

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

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

.poster-type,
.poster-play,
.rank-badge {
  position: absolute;
  z-index: 2;
}

.poster-type {
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(15, 118, 110, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.poster-play {
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.rank-badge {
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #dc2626);
  font-weight: 900;
}

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

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.movie-card h3 a:hover {
  color: var(--color-primary);
}

.movie-card p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.rank-row span {
  color: var(--color-primary);
  font-weight: 900;
  font-size: 20px;
}

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

.rank-row strong,
.rank-row small {
  grid-column: 3;
}

.rank-row small {
  color: var(--color-muted);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #0f766e, #2563eb);
}

.page-hero {
  max-width: 1280px;
  margin: 32px auto 0;
  border-radius: 32px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p:not(.hero-eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: #dbeafe;
  font-size: 17px;
}

.page-hero-card {
  display: grid;
  place-items: center;
  min-width: 160px;
  min-height: 140px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.page-hero-card strong {
  font-size: 46px;
  line-height: 1;
}

.page-hero-card span {
  color: #d1fae5;
  font-weight: 800;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-overview-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f766e, #2563eb);
}

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

.category-overview-card h2 {
  margin: 6px 0 8px;
}

.category-overview-card p,
.category-overview-card small {
  color: var(--color-muted);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(130px, 0.7fr)) auto auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #374151;
  font-weight: 800;
  font-size: 13px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 11px 12px;
  outline: none;
  background: #ffffff;
}

.filter-count {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  white-space: nowrap;
}

.breadcrumb {
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--color-primary);
  font-weight: 800;
}

.detail-hero {
  min-height: 520px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) saturate(1.1);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.92), rgba(15, 118, 110, 0.74));
}

.detail-layout {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 68px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
  background: linear-gradient(135deg, #0f766e, #2563eb);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 800px;
  margin: 20px 0 22px;
  color: #e5e7eb;
  font-size: 19px;
}

.player-section {
  max-width: 1180px;
  margin: -70px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 24px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 16 / 9;
  background: #020617;
  box-shadow: 0 38px 80px rgba(2, 6, 23, 0.34);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

.player-start span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.45);
  font-size: 28px;
}

.player-start strong {
  font-size: 22px;
}

.player-start small {
  color: #d1d5db;
}

.player-box.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}

.detail-main-text {
  display: grid;
  gap: 20px;
}

.text-card,
.detail-side-card,
.search-page-panel,
.empty-state {
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(229, 231, 235, 0.80);
}

.text-card h2,
.detail-side-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.text-card p {
  margin: 0;
  color: #374151;
  font-size: 16px;
}

.detail-side-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
  margin: 0 0 18px;
}

.detail-side-card dt {
  color: var(--color-muted);
  font-weight: 800;
}

.detail-side-card dd {
  margin: 0;
}

.detail-side-card a {
  color: var(--color-primary);
  font-weight: 800;
}

.search-page-panel {
  margin-bottom: 26px;
}

.large-search-form input {
  flex: 1;
  width: auto;
  min-height: 52px;
  font-size: 16px;
}

.large-search-form button {
  min-height: 52px;
  padding-inline: 24px;
}

.empty-state {
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 10px;
}

.empty-state p {
  margin: 0 0 18px;
  color: var(--color-muted);
}

.site-footer {
  margin-top: 82px;
  background: #111827;
  color: #d1d5db;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 34px;
}

.footer-logo {
  color: #ffffff;
}

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

.footer-column h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 18px 24px;
  text-align: center;
  color: #6b7280;
}

@media (max-width: 1080px) {
  .site-nav,
  .header-search {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-cover {
    max-width: 620px;
  }

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

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

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

@media (max-width: 760px) {
  .site-header-inner {
    padding: 0 16px;
  }

  .site-logo {
    font-size: 18px;
  }

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

  .hero-content {
    padding: 60px 18px 110px;
    gap: 28px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .stats-strip,
  .movie-grid,
  .category-grid,
  .compact-grid,
  .footer-inner,
  .filter-panel,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    margin-top: 18px;
  }

  .content-section {
    padding: 50px 16px 0;
  }

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

  .page-hero {
    margin: 18px 16px 0;
    padding: 34px 24px;
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-layout {
    padding: 36px 16px 96px;
  }

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

  .player-section {
    margin-top: -62px;
    padding: 0 16px;
  }

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

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

  .mobile-search input {
    width: 100%;
  }
}
