:root {
  --pink: #ec4899;
  --rose: #f43f5e;
  --orange: #fb923c;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #fff1f2;
  --card: #ffffff;
  --line: rgba(17, 24, 39, 0.1);
  --shadow: 0 24px 70px rgba(236, 72, 153, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 42%, #fdf2f8 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #ec4899, #fb7185, #fb923c);
  box-shadow: 0 18px 45px rgba(236, 72, 153, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

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

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

.logo-mark,
.footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}

.nav-link,
.mobile-link {
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  color: var(--pink);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.header-search {
  position: relative;
  display: flex;
  gap: 8px;
  padding-left: 6px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 12px 16px;
  min-width: 230px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.header-search button,
.mobile-search button,
.big-search button,
.filter-panel button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--pink);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.25);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: center;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
}

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

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

.mobile-search {
  display: flex;
  gap: 8px;
}

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

.hero {
  position: relative;
  height: min(76vh, 720px);
  min-height: 560px;
  overflow: hidden;
  background: #111827;
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(236, 72, 153, 0.6), transparent 38%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.9) 0%, rgba(88, 28, 65, 0.72) 47%, rgba(17, 24, 39, 0.36) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 380px;
  align-items: center;
  gap: 48px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  color: #ffffff;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
  margin: 0 0 22px;
}

.hero-tags,
.tag-row,
.detail-meta,
.category-nav-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.category-nav-scroll a {
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  transition: 0.25s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 16px 38px rgba(236, 72, 153, 0.35);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3 / 4.1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.4);
}

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

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

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

.quick-search-section {
  position: relative;
  z-index: 4;
  margin-top: -46px;
}

.quick-search-card {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.quick-search-card h2,
.section-head h2,
.page-hero h1,
.detail-info h1,
.detail-article h2,
.detail-side h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.quick-search-card h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.quick-search-card p,
.section-head p,
.page-hero p,
.card-desc,
.card-meta,
.rank-info p,
.rank-info span,
.detail-one-line,
.detail-article p,
.detail-side dd,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.big-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.1), rgba(251, 146, 60, 0.12));
  box-shadow: inset 0 0 0 1px rgba(236, 72, 153, 0.14);
}

.big-search input {
  flex: 1;
  min-width: 0;
  color: var(--ink);
  background: #ffffff;
}

.big-search input::placeholder,
.filter-panel input::placeholder {
  color: #9ca3af;
}

.big-search button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.section {
  padding: 72px 0;
}

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

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.section-head a,
.text-link {
  color: var(--pink);
  font-weight: 900;
}

.category-section {
  background: linear-gradient(135deg, #fdf2f8, #fff7ed);
}

.hot-section {
  background: linear-gradient(135deg, #fdf2f8, #fff1f2);
}

.latest-section {
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.featured-section {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.ranking-section,
.related-section {
  background: linear-gradient(135deg, #fff1f2, #fdf2f8);
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  border-radius: 26px;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111827;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.1);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  transition: 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.88));
}

.category-tile span,
.category-tile p {
  position: relative;
  z-index: 2;
}

.category-tile span {
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
}

.category-tile p {
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0 0;
  line-height: 1.65;
}

.category-tile:hover img,
.movie-card:hover img,
.rank-card:hover img {
  transform: scale(1.08);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
  transition: 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(236, 72, 153, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

.wide-card {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.wide-card .poster-wrap {
  aspect-ratio: 4 / 5;
}

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

.poster-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.poster-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  font-size: 12px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.play-badge {
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.card-body {
  padding: 18px;
}

.card-title {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
  margin-bottom: 8px;
}

.card-title:hover,
.rank-info a:hover,
.detail-side a:hover,
.site-footer a:hover {
  color: var(--pink);
}

.card-meta {
  margin: 0 0 10px;
  font-size: 13px;
}

.card-desc {
  margin: 0 0 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row span {
  color: var(--pink);
  background: #fdf2f8;
  box-shadow: inset 0 0 0 1px rgba(236, 72, 153, 0.12);
}

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

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

.rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
}

.rank-num {
  position: absolute;
  left: -8px;
  top: -8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.28);
}

.rank-poster {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111827;
}

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

.rank-info a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.rank-info p,
.rank-info span {
  display: block;
  margin: 6px 0 0;
  font-size: 13px;
}

.page-hero {
  padding: 86px 0 74px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(120deg, #ec4899, #fb7185 54%, #fb923c);
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

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

.category-nav-scroll {
  margin-top: 24px;
}

.category-nav-scroll a:hover {
  background: #ffffff;
  color: var(--pink);
}

.filter-panel {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
}

.filter-panel input,
.filter-panel select {
  min-width: 0;
  flex: 1;
  color: var(--ink);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.1);
}

.filter-panel select {
  flex: 0 0 180px;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

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

.category-cover-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.category-card-large h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 950;
}

.category-card-large p {
  color: var(--muted);
  line-height: 1.75;
}

.detail-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(236, 72, 153, 0.48), transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.46));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  padding: 58px 0 72px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 46px;
}

.detail-poster {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

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

.detail-info h1 {
  color: #ffffff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.detail-one-line {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  font-size: 20px;
}

.detail-meta {
  margin: 22px 0;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.player-section {
  background: #0f172a;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.54));
  cursor: pointer;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.36);
  font-size: 34px;
}

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

.detail-content-section {
  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

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

.detail-article,
.detail-side {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.detail-article h2,
.detail-side h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.detail-article p {
  margin: 0 0 22px;
  font-size: 17px;
}

.detail-side dl {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.detail-side dt {
  color: var(--pink);
  font-weight: 950;
}

.detail-side dd {
  margin: -6px 0 8px;
}

.next-links {
  display: grid;
  gap: 12px;
}

.next-links a {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fdf2f8;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 56px 0 36px;
}

.footer-logo {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 16px;
}

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

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

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

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

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

  .menu-button {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr 300px;
  }

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

  .wide-grid,
  .rank-grid,
  .rank-list,
  .category-large-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-nav {
    min-height: 66px;
  }

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

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

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding: 50px 0 76px;
  }

  .hero-poster {
    width: min(280px, 78vw);
    margin: 0 auto;
    transform: none;
  }

  .quick-search-card,
  .detail-grid,
  .detail-content-grid,
  .footer-grid,
  .category-card-large {
    grid-template-columns: 1fr;
  }

  .big-search,
  .filter-panel,
  .mobile-search {
    flex-direction: column;
    border-radius: 24px;
  }

  .filter-panel select {
    flex: 1;
  }

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

  .category-grid,
  .movie-grid,
  .wide-grid,
  .rank-grid,
  .rank-list,
  .category-large-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-template-columns: 130px 1fr;
  }

  .page-hero {
    padding: 62px 0 54px;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-wrap {
    padding: 36px 0 54px;
  }

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

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

  .player-overlay span {
    width: 70px;
    height: 70px;
  }
}
