:root {
  --cake-cream: #fff7ef;
  --cake-rose: #ffe4ef;
  --cake-lavender: #f0e7ff;
  --cake-mint: #dff8ee;
  --cake-strawberry: #ff7aa8;
  --cake-coral: #ff6b7f;
  --bow-pink: #ff7ac3;
  --bow-hotpink: #ec4899;
  --ink: #2d2230;
  --muted: #725c6e;
  --line: rgba(236, 72, 153, 0.18);
  --shadow: 0 18px 50px rgba(236, 72, 153, 0.16);
  --shadow-hover: 0 24px 70px rgba(236, 72, 153, 0.28);
  --radius: 24px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 195, 0.18), transparent 26rem),
    radial-gradient(circle at 85% 18%, rgba(240, 231, 255, 0.9), transparent 28rem),
    linear-gradient(180deg, #fffaf6 0%, #fff7fb 42%, #fff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 12px 18px, rgba(255, 122, 168, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 42px 34px, rgba(236, 72, 153, 0.14) 0 1.5px, transparent 2px);
  background-size: 70px 70px;
  z-index: -1;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(236, 72, 153, 0.08);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cake-strawberry), var(--bow-hotpink));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.32);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--bow-hotpink), #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand em {
  display: block;
  margin-top: 3px;
  color: var(--cake-coral);
  font-size: 12px;
  font-style: normal;
}

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

.main-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: #5b4758;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 2px;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown > button:hover {
  color: var(--bow-hotpink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown div {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 260px;
  transform: translateX(-50%) translateY(10px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: 0.22s ease;
}

.nav-dropdown:hover div {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  padding: 9px 10px;
  border-radius: 12px;
  color: #675060;
  font-size: 14px;
}

.nav-dropdown a:hover {
  background: var(--cake-rose);
  color: var(--bow-hotpink);
}

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

.header-search input,
.mobile-search input,
.local-search input {
  border: 2px solid rgba(255, 122, 168, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.local-search input:focus {
  border-color: var(--bow-hotpink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.header-search button,
.mobile-search button,
.btn-primary,
.btn-light,
.quick-actions a,
.wide-link,
.more-link {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.24s ease;
}

.header-search button,
.mobile-search button,
.btn-primary,
.quick-actions a:first-child,
.wide-link {
  color: #fff;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
}

.header-search button {
  padding: 10px 18px;
}

.header-search button:hover,
.mobile-search button:hover,
.btn-primary:hover,
.quick-actions a:hover,
.wide-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.menu-toggle {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--bow-hotpink);
  background: var(--cake-rose);
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  color: #6d5368;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  height: min(740px, calc(100vh - 82px));
  min-height: 560px;
  overflow: hidden;
  background: #130817;
}

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

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 4s ease;
}

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

.hero-overlay,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 8, 26, 0.9) 0%, rgba(22, 8, 26, 0.68) 44%, rgba(22, 8, 26, 0.15) 100%),
    radial-gradient(circle at 24% 40%, rgba(236, 72, 153, 0.24), transparent 30rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding-top: clamp(120px, 16vh, 180px);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ad1457;
  background: rgba(255, 228, 239, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 24px 0 18px;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

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

.hero-tags,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-tags span,
.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 700;
  font-size: 14px;
}

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

.btn-primary,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
}

.btn-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 32px;
  cursor: pointer;
}

.hero-prev {
  left: 26px;
}

.hero-next {
  right: 26px;
}

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

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

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

.section {
  padding: 48px 0;
}

.intro-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.page-hero h1,
.detail-info h1 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: min(440px, 100%);
}

.quick-actions a,
.wide-link,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
}

.quick-actions a:not(:first-child),
.more-link {
  color: var(--bow-hotpink);
  background: #fff;
  border: 1px solid var(--line);
}

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

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

.category-card {
  position: relative;
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 228, 239, 0.86)),
    radial-gradient(circle at 90% 15%, rgba(236, 72, 153, 0.28), transparent 8rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.26s ease;
}

.category-card::after {
  content: "✦";
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: rgba(236, 72, 153, 0.18);
  font-size: 62px;
  line-height: 1;
}

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

.category-card span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 12px;
  color: var(--bow-hotpink);
  font-size: 23px;
  font-weight: 900;
}

.category-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.compact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.movie-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.26s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cake-rose), var(--cake-lavender));
}

.poster-link img,
.rank-cover img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

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

.poster-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 46px;
  background: rgba(22, 8, 26, 0.34);
  opacity: 0;
  transition: 0.24s ease;
}

.movie-card:hover .poster-mask {
  opacity: 1;
}

.corner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
}

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

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

.movie-card-title:hover,
.rank-title:hover {
  color: var(--bow-hotpink);
}

.movie-card-body p,
.rank-item p {
  margin: 10px 0 12px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--cake-cream);
  color: #805a70;
  font-size: 12px;
  font-weight: 800;
}

.tag-row span {
  background: var(--cake-rose);
  color: #b51f66;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
}

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

.rank-list.full {
  gap: 16px;
}

.rank-item {
  display: grid;
  grid-template-columns: auto 128px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.rank-list.full .rank-item {
  grid-template-columns: auto 160px 1fr;
}

.rank-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--cake-strawberry), var(--bow-hotpink));
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.3);
}

.rank-cover {
  display: block;
  height: 86px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cake-rose), var(--cake-lavender));
}

.rank-list.full .rank-cover {
  height: 100px;
}

.wide-link {
  margin-top: 18px;
  width: 100%;
}

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

.page-hero {
  padding: 56px 0 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: #7e6077;
  font-size: 14px;
}

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

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

.local-search input {
  width: min(520px, 100%);
  padding: 14px 18px;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.side-panel,
.content-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.side-panel {
  position: sticky;
  top: 106px;
  padding: 22px;
}

.side-panel h2,
.content-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.side-links a:hover {
  color: var(--bow-hotpink);
}

.side-links span {
  color: var(--muted);
  font-weight: 700;
}

.detail-page {
  padding-bottom: 20px;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 58px 0 70px;
}

.detail-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.78);
}

.detail-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 32px;
  border: 6px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  background: linear-gradient(135deg, var(--cake-rose), var(--cake-lavender));
}

.detail-info h1 {
  color: #fff;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.detail-info .lead {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
}

.detail-tags span {
  background: rgba(255, 228, 239, 0.92);
}

.watch-section .section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 16 / 9;
  background: #09040b;
  box-shadow: 0 28px 90px rgba(28, 8, 28, 0.34);
  border: 1px solid var(--line);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #09040b;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(236, 72, 153, 0.25), transparent 24rem),
    rgba(12, 4, 14, 0.36);
  cursor: pointer;
  transition: 0.22s ease;
}

.play-layer span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--cake-strawberry), var(--bow-hotpink));
  box-shadow: 0 18px 50px rgba(236, 72, 153, 0.42);
  font-size: 42px;
}

.play-layer strong {
  font-size: 22px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.play-layer.is-hidden,
.movie-player.is-playing .play-layer {
  opacity: 0;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.content-card {
  padding: 28px;
}

.content-card p {
  color: var(--muted);
  line-height: 1.92;
  font-size: 17px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px 16px;
  margin: 0;
}

.detail-side dt {
  color: #9b6d89;
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(240, 231, 255, 0.96), rgba(255, 228, 239, 0.96));
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.8fr;
  gap: 34px;
}

.footer-inner p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-inner h3 {
  margin: 0 0 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #774c68;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--bow-hotpink);
  transform: translateY(-1px);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: #775a70;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

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

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

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 72px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .mobile-search input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
  }

  .mobile-search button {
    padding: 12px 16px;
  }

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

  .hero-content {
    padding-top: 110px;
  }

  .hero-arrow {
    display: none;
  }

  .intro-section,
  .row-heading {
    display: block;
  }

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rank-item,
  .rank-list.full .rank-item {
    grid-template-columns: auto 102px 1fr;
  }

  .rank-cover,
  .rank-list.full .rank-cover {
    height: 76px;
  }

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

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

@media (max-width: 560px) {
  .container,
  .header-inner,
  .mobile-panel,
  .footer-inner,
  .copyright {
    width: min(100% - 22px, 1180px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }

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

  .brand em {
    display: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

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

  .rank-num {
    width: 38px;
    height: 38px;
  }

  .rank-cover,
  .rank-list.full .rank-cover {
    height: 160px;
  }

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

  .detail-hero-inner {
    padding: 34px 0 44px;
  }

  .detail-info .lead {
    font-size: 17px;
  }

  .movie-player {
    border-radius: 22px;
  }

  .play-layer span {
    width: 72px;
    height: 72px;
    font-size: 32px;
  }
}
