:root {
  --orange: #f97316;
  --orange-dark: #c2410c;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --yellow: #facc15;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(248, 113, 22, 0.18);
  --soft: #fff7ed;
  --paper: #ffffff;
  --shadow: 0 20px 60px rgba(154, 52, 18, 0.18);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(251, 146, 60, 0.18), transparent 34rem),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 42%, #fff7ed 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(154, 52, 18, 0.08);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--rose), var(--amber));
  box-shadow: 0 12px 26px rgba(244, 63, 94, 0.28);
}

.brand-text,
.footer-brand {
  font-size: 22px;
  background: linear-gradient(90deg, var(--orange), var(--rose), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--orange-dark);
  background: #ffedd5;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #ffedd5;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--orange-dark);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.28), transparent 24rem),
    radial-gradient(circle at 80% 18%, rgba(244, 63, 94, 0.22), transparent 26rem),
    linear-gradient(135deg, #111827 0%, #7c2d12 48%, #881337 100%);
}

.hero-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.45), rgba(124, 45, 18, 0.78));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.35;
}

.hero-glow-a {
  left: -120px;
  top: 80px;
  background: var(--orange);
}

.hero-glow-b {
  right: -80px;
  bottom: 40px;
  background: var(--rose);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 56px 0 84px;
}

.hero-slide {
  display: none;
  width: 100%;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 6vw, 72px);
}

.hero-slide.is-active {
  display: grid;
  animation: fadeUp 0.55s ease both;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 760px;
  margin: 16px 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
}

.section-kicker {
  color: var(--orange-dark);
  background: #ffedd5;
  border-color: rgba(249, 115, 22, 0.22);
}

.hero-line {
  margin: 0 0 12px;
  color: #fed7aa;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
}

.hero-summary {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.center-actions {
  justify-content: center;
}

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.28);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.ghost-button.dark {
  color: var(--orange-dark);
  background: #fff7ed;
  border-color: var(--line);
}

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

.hero-pills,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span,
.detail-meta span,
.rank-meta span,
.rank-meta strong {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff7ed;
  font-size: 13px;
  font-weight: 800;
}

.detail-meta span,
.rank-meta span,
.rank-meta strong {
  background: #fff7ed;
  color: var(--orange-dark);
}

.hero-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(1.5deg);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.62));
}

.hero-visual img,
.poster-frame img,
.rank-poster img,
.detail-poster img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

.hero-play {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

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

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

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 30px;
  line-height: 1;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

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

.content-section,
.page-main,
.detail-main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.content-section {
  padding: 56px 0;
}

.intro-search {
  margin-top: -42px;
  position: relative;
  z-index: 8;
}

.filter-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid var(--line);
}

.search-box span {
  color: var(--orange-dark);
  font-size: 22px;
  font-weight: 900;
}

.search-box input {
  flex: 1;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.filter-buttons,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-button,
.quick-links a {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.quick-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1,
.detail-article h2,
.watch-side h2 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.section-link,
.side-link {
  color: var(--orange-dark);
  background: #ffedd5;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(154, 52, 18, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 63, 94, 0.3);
  box-shadow: 0 24px 60px rgba(154, 52, 18, 0.16);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #ffedd5;
}

.poster-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(17, 24, 39, 0.58));
}

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

.poster-year {
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.72);
  font-size: 12px;
}

.poster-play {
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  font-size: 12px;
}

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

.movie-title,
.rank-title {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.movie-title:hover,
.rank-title:hover {
  color: var(--orange-dark);
}

.movie-meta,
.movie-desc,
.rank-content p,
.detail-line,
.watch-side p,
.detail-article p {
  color: var(--muted);
}

.movie-meta {
  margin: 8px 0 6px;
  font-size: 13px;
}

.movie-desc {
  min-height: 3.2em;
  margin: 0 0 12px;
  font-size: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
}

.large-tags span {
  font-size: 13px;
}

.soft-panel {
  width: min(1240px, calc(100% - 16px));
  padding: 56px clamp(16px, 3vw, 32px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(251, 146, 60, 0.16), transparent 28rem),
    linear-gradient(135deg, #fff7ed, #ffffff);
  border: 1px solid var(--line);
}

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

.category-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.category-tile a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 115, 22, 0.14);
  box-shadow: 0 12px 30px rgba(154, 52, 18, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile a:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(154, 52, 18, 0.14);
}

.category-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--rose));
}

.category-tile h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.category-tile p {
  margin: 0 0 14px;
  color: var(--muted);
}

.category-examples {
  display: grid;
  gap: 6px;
}

.category-examples a {
  min-height: auto;
  display: block;
  padding: 0;
  border: 0;
  box-shadow: none;
  color: var(--orange-dark);
  background: transparent;
  font-weight: 800;
}

.page-main {
  padding-bottom: 40px;
}

.page-hero {
  margin: 34px auto 18px;
  padding: clamp(38px, 7vw, 82px);
  text-align: center;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0%, rgba(251, 146, 60, 0.22), transparent 22rem),
    radial-gradient(circle at 90% 20%, rgba(244, 63, 94, 0.16), transparent 24rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.page-hero .section-kicker {
  margin: 0 auto;
}

.page-hero p {
  margin: 0 auto;
}

.small-hero {
  padding-block: 56px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(154, 52, 18, 0.07);
}

.rank-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  font-weight: 950;
}

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

.rank-content p {
  margin: 6px 0 10px;
}

.detail-main {
  width: 100%;
}

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

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

.detail-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(124, 45, 18, 0.82));
}

.detail-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 64px);
  align-items: center;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 30px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
}

.detail-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  font-size: 28px;
}

.detail-info h1,
.detail-info .detail-line {
  color: #ffffff;
}

.detail-info h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.detail-line {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 20px;
}

.watch-section {
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
}

.video-shell {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.32);
  cursor: pointer;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: contain;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.24), rgba(0, 0, 0, 0.38)),
    rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 20px 45px rgba(244, 63, 94, 0.35);
  font-size: 32px;
}

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

.watch-side,
.detail-article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(154, 52, 18, 0.08);
}

.watch-side h2 {
  font-size: 28px;
}

.article-section {
  padding-top: 16px;
}

.detail-article {
  max-width: 900px;
}

.detail-article h2 {
  font-size: 30px;
}

.detail-article p {
  font-size: 18px;
}

.related-grid .movie-card.is-compact .movie-desc {
  min-height: auto;
}

.site-footer {
  margin-top: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #7c2d12 55%, #881337);
}

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

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: #fed7aa;
}

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
}

[data-movie-card].is-hidden,
.category-tile.is-hidden {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .hero-slide,
  .detail-grid,
  .watch-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding-top: 34px;
  }

  .hero-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-controls {
    position: static;
    margin-top: 28px;
  }

  .watch-layout {
    gap: 16px;
  }

  .video-shell {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .content-section,
  .page-main,
  .detail-content,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 22px, 1200px);
  }

  .brand-text {
    font-size: 19px;
  }

  .hero-section,
  .hero-shell {
    min-height: auto;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-copy h1,
  .hero-copy h2,
  .detail-info h1 {
    font-size: 40px;
  }

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

  .section-heading {
    display: block;
  }

  .section-link {
    margin-top: 14px;
  }

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

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

  .movie-title {
    font-size: 16px;
  }

  .movie-desc,
  .tag-list {
    display: none;
  }

  .rank-item {
    grid-template-columns: 44px 70px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .rank-meta {
    gap: 6px;
  }

  .rank-meta span,
  .rank-meta strong {
    font-size: 11px;
  }

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

  .detail-content {
    padding: 28px 0 54px;
  }

  .detail-poster {
    max-width: 260px;
    margin: 0 auto;
  }

  .play-overlay span {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
