* {
  box-sizing: border-box;
}

:root {
  --rose-50: #fff1f4;
  --rose-100: #ffe4eb;
  --rose-200: #fecdd8;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --pink-500: #ec4899;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #eef2f7;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(244, 63, 94, 0.16);
  --soft-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 241, 244, 0.55), #ffffff 38%, rgba(255, 241, 244, 0.35));
  line-height: 1.6;
}

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

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

button,
input,
select {
  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.94);
  border-bottom: 1px solid rgba(254, 205, 216, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-400), var(--pink-500));
  box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
  font-size: 15px;
}

.brand-copy strong,
.footer-logo {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--rose-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose-500);
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(330px, 32vw);
}

.site-search input,
.large-search input,
.filter-row input,
.filter-row select {
  width: 100%;
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  background: #fff7f9;
  color: var(--text);
  outline: none;
  padding: 11px 16px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search input:focus,
.large-search input:focus,
.filter-row input:focus,
.filter-row select:focus {
  border-color: var(--rose-400);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

.site-search button,
.large-search button,
.hero-slide-copy a,
.hero-more,
.final-cta a,
.text-link {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  padding: 11px 18px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-search button:hover,
.large-search button:hover,
.hero-slide-copy a:hover,
.hero-more:hover,
.final-cta a:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.32);
}

.quick-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--rose-100);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.quick-results.active {
  display: block;
}

.quick-results a {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.quick-results a:last-child {
  border-bottom: 0;
}

.quick-results strong {
  display: block;
  font-size: 14px;
}

.quick-results small {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: #fff1f4;
  color: var(--rose-500);
  border-radius: 12px;
  padding: 9px 12px;
}

.hero-head {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4eb 0%, #fff7fa 52%, #fff1f4 100%);
  padding: 74px 0 140px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.35;
}

.hero-orb-one {
  width: 300px;
  height: 300px;
  left: 6vw;
  top: 20px;
  background: var(--rose-400);
}

.hero-orb-two {
  width: 420px;
  height: 420px;
  right: 5vw;
  bottom: -60px;
  background: var(--pink-500);
}

.hero-head-inner {
  position: relative;
  text-align: center;
}

.hero-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-title-row h1,
.sub-hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--rose-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-mark {
  width: 48px;
  height: 48px;
}

.hero-head p,
.sub-hero p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #5b6472;
  font-size: 18px;
}

.hero-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 0;
  margin-top: -90px;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-stage {
  position: relative;
  min-height: 480px;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.86));
}

.hero-slide-copy {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 34px;
  color: #ffffff;
}

.hero-slide-copy span,
.section-heading span,
.sub-hero span {
  display: inline-block;
  color: var(--rose-500);
  background: #fff1f4;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-slide-copy span {
  color: #ffffff;
  background: var(--rose-500);
}

.hero-slide-copy h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.12;
}

.hero-slide-copy p {
  max-width: 650px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 26px;
  display: flex;
  gap: 8px;
}

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

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

.hero-hot {
  padding: 32px;
  background: linear-gradient(135deg, #fff1f4, #fff7fb);
}

.section-title.compact,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-title.compact h2,
.section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(24px, 3vw, 34px);
}

.hot-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.hot-link {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  grid-template-areas: "num title views" "num genre views";
  gap: 2px 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hot-link:hover {
  background: #ffffff;
  transform: translateX(4px);
}

.hot-link span {
  grid-area: num;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-400), var(--pink-500));
}

.hot-link strong {
  grid-area: title;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hot-link small {
  grid-area: genre;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hot-link em {
  grid-area: views;
  color: #9ca3af;
  font-style: normal;
  font-size: 12px;
}

.hero-more {
  display: block;
  margin-top: 24px;
  text-align: center;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.category-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(254, 205, 216, 0.7);
  transition: transform 0.2s ease, border 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-3px);
  border-color: var(--rose-400);
}

.category-chip span {
  color: var(--rose-500);
  font-size: 13px;
}

.content-section {
  margin-top: 64px;
}

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

.section-heading a {
  color: var(--rose-500);
  font-weight: 800;
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(238, 242, 247, 0.95);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(244, 63, 94, 0.16);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

.movie-card-large .poster {
  aspect-ratio: 16 / 12;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.78));
  opacity: 0.72;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.poster-time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 12px;
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9ca3af;
  font-size: 12px;
}

.movie-meta-line a {
  color: var(--rose-500);
  font-weight: 800;
}

.movie-info h3 {
  margin: 9px 0 7px;
  font-size: 18px;
  line-height: 1.28;
}

.movie-info h3 a:hover {
  color: var(--rose-500);
}

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

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

.tag-row span,
.detail-tags span,
.genre-line span {
  color: var(--rose-500);
  background: #fff1f4;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  color: #9ca3af;
  font-size: 13px;
}

.card-foot a {
  color: var(--rose-500);
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 42px;
  color: #ffffff;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--rose-400));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 42px);
}

.final-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta a {
  color: var(--rose-500);
  background: #ffffff;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(135deg, #fff1f4, #ffffff 54%, #ffe4eb);
  text-align: center;
}

.category-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
  margin-bottom: 72px;
}

.category-card-main {
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--rose-100);
  box-shadow: var(--soft-shadow);
}

.category-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.category-card-head span {
  font-size: 24px;
  font-weight: 900;
}

.category-card-head strong {
  color: var(--rose-500);
}

.category-card-main p {
  color: var(--muted);
  margin: 0 0 18px;
}

.category-sample {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.compact-card,
.related-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px;
  border-radius: 14px;
  background: #fff7f9;
  transition: background 0.2s ease;
}

.compact-card:hover,
.related-row:hover {
  background: #fff1f4;
}

.compact-card img,
.related-row img {
  width: 86px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.compact-card span,
.related-row span {
  min-width: 0;
}

.compact-card strong,
.related-row strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
}

.compact-card small,
.related-row small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
}

.filter-panel {
  margin-top: 44px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--rose-100);
  box-shadow: var(--soft-shadow);
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
}

.filter-row label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.genre-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.genre-filter button {
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  background: #ffffff;
  color: #4b5563;
  cursor: pointer;
  padding: 8px 13px;
}

.genre-filter button.active,
.genre-filter button:hover {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
}

.filter-count {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.category-movie-grid {
  margin-bottom: 72px;
}

.rank-list,
.library-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 72px;
}

.rank-row,
.library-item {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, border 0.2s ease;
}

.rank-row {
  grid-template-columns: 52px 98px minmax(0, 1fr) auto;
}

.rank-row:hover,
.library-item:hover {
  transform: translateX(5px);
  border-color: var(--rose-200);
}

.rank-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-400), var(--pink-500));
}

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

.rank-copy,
.library-item strong,
.library-item small {
  min-width: 0;
}

.rank-copy strong,
.rank-copy small,
.library-item strong,
.library-item small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy small,
.library-item small {
  color: var(--muted);
}

.rank-row em {
  color: var(--rose-500);
  font-style: normal;
  font-weight: 900;
}

.library-item {
  grid-template-columns: 70px minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.library-item span {
  color: var(--rose-500);
  font-weight: 900;
}

.search-page-panel {
  margin-top: 44px;
}

.large-search {
  display: flex;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.search-result-title {
  margin-top: 28px;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.search-result-card {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.search-result-card img {
  width: 116px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
}

.search-result-card strong {
  display: block;
  margin-bottom: 4px;
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-wrap {
  padding-top: 28px;
  padding-bottom: 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--rose-500);
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.video-shell video {
  object-fit: contain;
  background: #000000;
}

.player-cover {
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background: #111827;
  z-index: 4;
}

.player-card.is-playing .player-cover {
  opacity: 0;
  pointer-events: none;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.86));
}

.play-bubble {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  font-size: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.player-cover strong,
.player-cover small {
  position: relative;
  z-index: 2;
  display: block;
}

.player-cover strong {
  margin-top: 18px;
  font-size: 24px;
}

.player-cover small {
  color: rgba(255, 255, 255, 0.78);
}

.detail-card,
.side-card {
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.detail-card h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.detail-card h2,
.side-card h2 {
  margin: 24px 0 12px;
  font-size: 22px;
}

.detail-card p {
  color: #4b5563;
}

.genre-line {
  align-items: center;
  margin-top: 16px;
}

.review-box {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--rose-100);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff1f4, #fff7fb);
}

.review-box h2 {
  margin-top: 0;
}

.sticky-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
}

.related-section {
  margin-top: 42px;
}

.site-footer {
  padding: 48px 0 22px;
  background: #fff7f9;
  border-top: 1px solid var(--rose-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-grid p {
  color: var(--muted);
}

.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: #4b5563;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--rose-500);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid var(--rose-100);
}

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

.muted {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: #fff7f9;
  }

  .main-nav.open {
    display: flex;
  }

  .site-search {
    width: min(520px, calc(100% - 78px));
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-stage {
    min-height: 430px;
  }

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

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

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

  .brand-copy strong {
    font-size: 18px;
  }

  .site-search {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .hero-head {
    padding: 48px 0 116px;
  }

  .hero-title-row {
    gap: 8px;
  }

  .hero-mark {
    width: 38px;
    height: 38px;
  }

  .hero-head p,
  .sub-hero p {
    font-size: 15px;
  }

  .hero-panel {
    border-radius: 22px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-slide-copy {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .hero-hot {
    padding: 22px;
  }

  .category-strip,
  .movie-grid,
  .category-main-grid,
  .category-sample,
  .search-results,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-row,
  .rank-row,
  .library-item {
    grid-template-columns: 1fr;
  }

  .rank-row img {
    width: 100%;
    height: 160px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .large-search {
    flex-direction: column;
  }
}
