:root {
  --pink: #ec4899;
  --rose: #f43f5e;
  --orange: #fb923c;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #fff1f6;
  --line: #fbcfe8;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 80px rgba(244, 63, 94, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.16), transparent 30rem),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 44%, #fff7fb 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(251, 207, 232, 0.9);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-title {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

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

.nav-link,
.nav-drop-button {
  padding: 10px 4px;
  color: #374151;
  font-weight: 700;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.is-active,
.nav-drop-button:hover {
  color: var(--pink);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  top: 44px;
  left: 0;
  width: 190px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(251, 207, 232, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-drop-menu a {
  padding: 10px 12px;
  color: #4b5563;
  border-radius: 12px;
}

.nav-drop-menu a:hover {
  background: #fdf2f8;
  color: var(--pink);
}

.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.header-search input,
.mobile-search input,
.filter-input,
.filter-select {
  border: 1px solid rgba(251, 207, 232, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 999px;
  outline: 0;
}

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

.header-search button,
.mobile-search button {
  padding: 11px 18px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(251, 207, 232, 0.95);
  border-radius: 14px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--rose);
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid rgba(251, 207, 232, 0.8);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff1f6;
  font-weight: 700;
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

.hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
}

.hero-shell {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 34px;
  background: #111827;
  box-shadow: var(--shadow);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.18);
  transform: scale(1.06);
  opacity: 0.65;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(236, 72, 153, 0.42), transparent 24rem),
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.46));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 610px;
  padding: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 360px;
  align-items: center;
  gap: 54px;
}

.hero-copy {
  color: #fff;
}

.hero-kicker,
.section-kicker,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: #fb7185;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 42px);
  color: #fff7fb;
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.9;
}

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

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.tag-row span {
  background: #fdf2f8;
  color: #be185d;
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.32);
}

.ghost-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.ghost-button.light {
  color: var(--pink);
  border-color: rgba(236, 72, 153, 0.22);
  background: #fff;
}

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

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.hero-controls {
  position: absolute;
  left: 72px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

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

.hero-quick {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  margin-top: 18px;
}

.quick-card {
  padding: 22px;
  border: 1px solid rgba(251, 207, 232, 0.95);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(244, 63, 94, 0.08);
  backdrop-filter: blur(16px);
}

.quick-card span {
  display: block;
  margin-bottom: 12px;
  color: #be185d;
  font-weight: 900;
}

.quick-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-card a {
  display: inline-flex;
  padding: 9px 13px;
  color: #be185d;
  border-radius: 999px;
  background: #fdf2f8;
  font-weight: 800;
}

.hot-card a {
  display: block;
  color: var(--text);
  background: transparent;
  padding: 0;
  line-height: 1.8;
}

.content-section,
.split-section {
  width: min(1240px, calc(100% - 32px));
  margin: 54px auto;
}

.soft-section {
  padding: 36px;
  border-radius: 34px;
  background: rgba(253, 242, 248, 0.72);
  border: 1px solid rgba(251, 207, 232, 0.8);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 207, 232, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 45px rgba(244, 63, 94, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 62px rgba(244, 63, 94, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #fff7ed);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(17, 24, 39, 0.76));
}

.poster-year,
.poster-play {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}

.poster-year {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.64);
  backdrop-filter: blur(10px);
}

.poster-play {
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
}

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

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.movie-card-meta a {
  color: var(--pink);
}

.movie-card h2 {
  margin: 0 0 9px;
  font-size: 19px;
  line-height: 1.35;
}

.movie-card h2 a:hover,
.rank-copy h2 a:hover,
.overview-tile h2 a:hover {
  color: var(--pink);
}

.movie-card p {
  min-height: 58px;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
}

.card-bottom strong {
  color: var(--rose);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 102px;
  padding: 24px;
  border: 1px solid rgba(251, 207, 232, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.rank-panel-head span {
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.rank-panel-head h2 {
  margin: 6px 0 16px;
  font-size: 28px;
}

.rank-row {
  display: grid;
  grid-template-columns: 32px 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(251, 207, 232, 0.7);
}

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

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

.rank-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

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

.category-tile {
  min-height: 166px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  border: 1px solid rgba(251, 207, 232, 0.85);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), #fff1f6);
  box-shadow: 0 16px 40px rgba(244, 63, 94, 0.08);
}

.category-tile span {
  color: #be185d;
  font-size: 20px;
  font-weight: 900;
}

.category-tile p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.mini-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: 58px;
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.48), transparent 22rem),
    linear-gradient(135deg, #831843, #be185d 48%, #fb7185);
  box-shadow: var(--shadow);
}

.mini-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.mini-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.9;
}

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

.overview-tile {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(251, 207, 232, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 45px rgba(244, 63, 94, 0.08);
}

.overview-posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.overview-posters img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.overview-tile h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.overview-tile p {
  color: var(--muted);
  line-height: 1.8;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-input {
  flex: 1;
  padding: 14px 18px;
}

.filter-select {
  min-width: 180px;
  padding: 14px 18px;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 72px 118px minmax(0, 1fr) 120px;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(251, 207, 232, 0.82);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(244, 63, 94, 0.08);
}

.rank-index {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  font-size: 22px;
  font-weight: 900;
}

.rank-cover img {
  width: 118px;
  height: 158px;
  object-fit: cover;
  border-radius: 18px;
}

.rank-copy h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.rank-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.rank-score {
  text-align: right;
}

.rank-score strong {
  display: block;
  color: var(--rose);
  font-size: 30px;
}

.rank-score span {
  color: var(--muted);
}

.detail-hero {
  min-height: 560px;
  color: #fff;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) saturate(1.08);
  transform: scale(1.08);
  opacity: 0.42;
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 16%, rgba(236, 72, 153, 0.36), transparent 26rem),
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.78));
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 64px;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  width: 300px;
  aspect-ratio: 3 / 4.15;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.85;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.player-section {
  width: min(1080px, calc(100% - 32px));
  margin: -72px auto 0;
  position: relative;
  z-index: 3;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #0f172a;
  box-shadow: 0 26px 90px rgba(15, 23, 42, 0.34);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  display: block;
  background: #000;
}

.player-cover {
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background: #111827;
}

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

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(1.1);
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  font-size: 30px;
}

.play-text {
  position: absolute;
  left: 50%;
  top: calc(50% + 58px);
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 900;
}

.detail-content {
  margin-top: 42px;
}

.text-panel {
  padding: 34px;
  border: 1px solid rgba(251, 207, 232, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 50px rgba(244, 63, 94, 0.08);
}

.text-panel h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.text-panel h2:not(:first-child) {
  margin-top: 28px;
}

.text-panel p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 2;
}

.site-footer {
  margin-top: 70px;
  padding: 46px 0 20px;
  color: #4b5563;
  border-top: 1px solid rgba(251, 207, 232, 0.86);
  background: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 36px;
}

.footer-brand p {
  max-width: 460px;
  line-height: 1.85;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
}

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

.footer-links a:hover {
  color: var(--pink);
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 207, 232, 0.72);
  color: #9ca3af;
  font-size: 13px;
}

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

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

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

  .hero-poster {
    display: none;
  }

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

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

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

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

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

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

  .hero-shell,
  .hero-slide,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 42px 28px 82px;
  }

  .hero-controls {
    left: 28px;
  }

  .hero-quick {
    grid-template-columns: 1fr;
  }

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

  .rank-card {
    grid-template-columns: 52px 92px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 2 / -1;
    text-align: left;
  }

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

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

  .detail-poster {
    width: 220px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: min(100% - 20px, 1240px);
  }

  .brand-subtitle {
    display: none;
  }

  .hero,
  .content-section,
  .split-section,
  .mini-hero,
  .detail-inner,
  .player-section,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 20px, 1240px);
  }

  .hero-shell,
  .hero-slide,
  .hero-content {
    min-height: 590px;
  }

  .hero-content {
    padding: 34px 22px 80px;
  }

  .hero-copy p,
  .mini-hero p,
  .detail-one-line {
    font-size: 15px;
  }

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

  .soft-section,
  .mini-hero,
  .text-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .filter-bar {
    flex-direction: column;
  }

  .rank-card {
    grid-template-columns: 44px 74px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .rank-cover img {
    width: 74px;
    height: 100px;
  }

  .rank-copy h2 {
    font-size: 19px;
  }

  .rank-copy p,
  .rank-copy .tag-row {
    display: none;
  }

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

  .detail-inner {
    padding-bottom: 100px;
  }

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