:root {
  --bg: #faf7f1;
  --paper: #ffffff;
  --ink: #24170f;
  --muted: #75695f;
  --line: rgba(120, 89, 50, 0.18);
  --amber: #f59e0b;
  --amber-dark: #92400e;
  --orange: #ea580c;
  --stone: #1c1917;
  --shadow: 0 24px 70px rgba(41, 24, 11, 0.14);
  --soft-shadow: 0 12px 32px rgba(41, 24, 11, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 46%, #f7efe3 100%);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, #78350f 0%, #9a3412 48%, #78350f 100%);
  box-shadow: 0 14px 35px rgba(67, 20, 7, 0.28);
}

.header-inner {
  max-width: 1220px;
  height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff7ed;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 10px 20px rgba(69, 26, 3, 0.28);
  font-weight: 900;
}

.brand-name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

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

.nav-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.13);
}

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

.header-search input,
.mobile-search input,
.intro-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  outline: none;
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transition: 0.22s ease;
}

.header-search input {
  width: 210px;
}

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

.header-search input:focus,
.mobile-search input:focus {
  width: 260px;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.52);
}

.header-search button,
.mobile-search button,
.intro-search button,
.primary-btn,
.ghost-btn,
.section-more {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-search button,
.mobile-search button,
.intro-search button,
.primary-btn {
  color: #3b1f06;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  box-shadow: 0 12px 24px rgba(146, 64, 14, 0.24);
}

.header-search button:hover,
.mobile-search button:hover,
.intro-search button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.mobile-panel {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

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

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 1220px;
  margin: 14px auto;
}

.mobile-search {
  max-width: 1220px;
  margin: 0 auto;
}

.mobile-search input {
  flex: 1;
}

.hero-carousel {
  position: relative;
  height: min(72vh, 640px);
  min-height: 520px;
  overflow: hidden;
  background: #1c1917;
}

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

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

.hero-image,
.detail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.02);
}

.hero-slide.is-active .hero-image {
  animation: slowZoom 8s ease both;
}

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.96) 0%, rgba(28, 25, 23, 0.72) 38%, rgba(28, 25, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(28, 25, 23, 0.9) 0%, transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  height: 100%;
  margin: 0 auto;
  padding: 96px 22px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-summary {
  max-width: 650px;
  margin: 22px 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: 22px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

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

.ghost-btn,
.section-more {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.section-more {
  color: #7c2d12;
  background: #fff7ed;
  border-color: rgba(245, 158, 11, 0.32);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(28, 25, 23, 0.42);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: 0.22s ease;
}

.hero-dots button.is-active {
  width: 28px;
  background: #f59e0b;
}

.home-intro,
.content-section,
.category-strip,
.page-wrap,
.detail-content,
.detail-related,
.player-section {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.home-intro {
  margin-top: -46px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.home-intro h2,
.section-heading h2,
.page-hero h1,
.story-card h2,
.ranking-block h2 {
  margin: 0;
  color: #24170f;
  line-height: 1.15;
}

.home-intro h2,
.section-heading h2,
.story-card h2,
.ranking-block h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.home-intro p:last-child,
.page-hero p,
.story-card p,
.category-card p,
.category-tile p {
  margin: 12px 0 0;
  color: var(--muted);
}

.intro-search {
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, #7c2d12, #431407);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.intro-search input {
  flex: 1;
  min-width: 0;
}

.category-strip,
.content-section {
  padding-top: 56px;
}

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

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

.category-tile,
.category-card a {
  display: block;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.9)),
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.2), transparent 12rem);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover,
.category-card a:hover,
.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-tile span,
.category-card h2 {
  display: block;
  color: #431407;
  font-size: 20px;
  font-weight: 900;
}

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

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

.movie-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card-link {
  display: block;
}

.poster-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, #431407, #9a3412 48%, #f59e0b),
    radial-gradient(circle at 20% 0%, rgba(255, 237, 213, 0.45), transparent 10rem);
}

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

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

.poster-title-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.poster-frame:not(.cover-empty) .poster-title-fallback,
.detail-poster:not(.cover-empty) .poster-title-fallback {
  opacity: 0;
}

.play-mark {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #431407;
  background: rgba(255, 237, 213, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #431407;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

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

.movie-card-body h2 {
  margin: 0;
  color: #24170f;
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  margin: 8px 0 0;
  color: #9a3412;
  font-size: 13px;
  font-weight: 800;
}

.movie-desc {
  min-height: 52px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-compact .movie-desc {
  min-height: 0;
}

.card-category {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(28, 25, 23, 0.66);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.page-wrap {
  padding-top: 34px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 54px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(67, 20, 7, 0.95), rgba(154, 52, 18, 0.94)),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.38), transparent 22rem);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(150px, 1fr));
  gap: 12px;
  max-width: 1220px;
  margin: 26px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  color: #24170f;
  background: #fffaf2;
  border-color: rgba(146, 64, 14, 0.18);
}

.filter-state {
  color: #9a3412;
  font-weight: 900;
}

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

.detail-page {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.15), transparent 26rem),
    linear-gradient(180deg, #1c1917 0, #1c1917 520px, var(--bg) 521px);
}

.detail-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  filter: blur(2px) saturate(1.05);
}

.detail-bg-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.96), rgba(28, 25, 23, 0.68), rgba(28, 25, 23, 0.9)),
    linear-gradient(0deg, #1c1917 0%, transparent 38%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 22px 72px;
}

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

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

.detail-main-card {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-top: 44px;
}

.detail-poster {
  position: relative;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, #431407, #9a3412 52%, #f59e0b);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

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

.detail-info h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(36px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.detail-one-line {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.detail-tags {
  margin-top: 20px;
}

.player-section {
  position: relative;
  margin-top: -48px;
  z-index: 4;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(245, 158, 11, 0.24), transparent 18rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.78));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-button {
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 999px;
  color: #431407;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.player-cover h2 {
  margin: 6px 0 0;
  font-size: clamp(24px, 4vw, 42px);
}

.player-cover p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 46px;
}

.story-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.story-card p:last-child {
  font-size: 17px;
}

.info-list-card {
  grid-column: 1 / -1;
}

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

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

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

.info-list dd {
  margin: 6px 0 0;
  color: #24170f;
  font-weight: 800;
}

.ranking-layout {
  max-width: 1220px;
  margin: 30px auto 0;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ranking-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ranking-item + .ranking-item {
  border-top: 1px solid rgba(146, 64, 14, 0.12);
}

.ranking-item a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 12px;
  align-items: center;
  padding: 12px 0;
}

.ranking-index {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 900;
}

.ranking-title {
  overflow: hidden;
  color: #24170f;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-meta {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #292524, #1c1917);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 44px 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.64);
}

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

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

.footer-link-grid a {
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.54);
}

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

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

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

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

  .ranking-layout,
  .category-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-main-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

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

  .brand-name {
    font-size: 18px;
  }

  .hero-carousel {
    min-height: 560px;
    height: 78vh;
  }

  .hero-content {
    padding: 82px 18px 70px;
  }

  .hero-control {
    display: none;
  }

  .home-intro {
    grid-template-columns: 1fr;
    margin-left: 14px;
    margin-right: 14px;
    padding: 22px;
  }

  .intro-search {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .movie-grid,
  .dense-grid,
  .category-grid,
  .category-page-grid,
  .ranking-layout,
  .detail-content,
  .info-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    margin-left: 22px;
    margin-right: 22px;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 24px;
  }

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

  .detail-poster {
    width: min(280px, 82vw);
  }

  .player-section {
    margin-top: -22px;
  }

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

  .player-button {
    width: 62px;
    height: 62px;
  }
}
