:root {
  --page-bg: #fff7fb;
  --panel-bg: rgba(255, 255, 255, 0.84);
  --text-main: #17131a;
  --text-soft: #6b6270;
  --line-soft: rgba(244, 114, 182, 0.18);
  --pink: #ec4899;
  --pink-dark: #db2777;
  --amber: #f59e0b;
  --violet: #8b5cf6;
  --shadow-soft: 0 20px 60px rgba(219, 39, 119, 0.12);
  --shadow-card: 0 14px 40px rgba(49, 32, 50, 0.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 202, 236, 0.62), transparent 36rem),
    radial-gradient(circle at top right, rgba(254, 215, 170, 0.64), transparent 32rem),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #fff8fb 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  min-width: 320px;
}

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: 80;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(236, 72, 153, 0.08);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.26);
  font-size: 15px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-title {
  font-size: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--pink), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4a414d;
  font-weight: 700;
}

.desktop-nav > a,
.nav-drop > button {
  position: relative;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.desktop-nav > a:hover,
.nav-drop:hover > button {
  color: var(--pink-dark);
}

.nav-drop {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 210px;
  display: grid;
  gap: 5px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

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

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

.nav-drop:hover .nav-menu,
.nav-drop:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.mobile-nav a {
  display: block;
  padding: 11px 12px;
  color: #4c414f;
  border-radius: 12px;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: #fff1f7;
  color: var(--pink-dark);
}

.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 76px 0 64px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-glow-one {
  left: -120px;
  top: 40px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.42), transparent 65%);
}

.hero-glow-two {
  right: -90px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.42), transparent 65%);
}

.hero-shell {
  position: relative;
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 38px;
  align-items: center;
}

.hero-intro {
  padding: 42px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  background: #fff1f7;
  border: 1px solid #ffd8ea;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-intro h1,
.page-hero h1,
.detail-info h1 {
  margin: 22px 0 18px;
  color: var(--text-main);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-intro p,
.page-hero p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.9;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 20px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.10);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--text-main);
  background: transparent;
}

.hero-search button,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(236, 72, 153, 0.22);
  transition: 0.22s ease;
}

.hero-search button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.30);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--pink-dark);
  background: #ffffff;
  border: 1px solid #ffd2e7;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.22s ease;
}

.ghost-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--pink));
  transform: translateY(-2px);
}

.hero-link-row,
.category-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-link-row a,
.category-chip {
  color: #6b425d;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ffd6e8;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 13px;
}

.hero-link-row a:hover,
.category-chip:hover,
.category-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  border-color: transparent;
}

.hero-slider {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 270px;
  gap: 22px;
  align-items: center;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  pointer-events: none;
  transition: 0.46s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-copy-card {
  min-height: 420px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 247, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.hero-eyebrow {
  color: var(--pink-dark);
  font-weight: 900;
}

.hero-copy-card h2 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-copy-card p {
  min-height: 104px;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 17px;
}

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

.hero-visual {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(53, 20, 45, 0.24);
  transform: rotate(2deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.66));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #fde7f1, #fed7aa);
}

.hero-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  background: rgba(236, 72, 153, 0.84);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
}

.slider-controls {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 22px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.slider-arrow,
.slider-dot {
  pointer-events: auto;
  border: 0;
  cursor: pointer;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  color: var(--pink-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(236, 72, 153, 0.18);
}

.slider-dots {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #f8b7d4;
  border-radius: 999px;
}

.slider-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--pink), var(--amber));
}

.content-section,
.detail-wrap {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

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

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--pink-dark);
  font-weight: 900;
}

.compact-heading {
  align-items: start;
  flex-direction: column;
  gap: 4px;
}

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

.category-card,
.overview-card,
.text-card,
.rank-panel,
.filter-panel,
.page-hero,
.detail-info,
.player-column {
  background: var(--panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.category-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.62;
  transition: 0.3s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 15%, rgba(32, 18, 30, 0.82));
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

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

.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 14px;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.8;
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 218, 234, 0.9);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(30, 20, 35, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.42);
  box-shadow: 0 22px 44px rgba(236, 72, 153, 0.16);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f7, #ffedd5);
}

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

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

.movie-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #ffffff;
  background: rgba(219, 39, 119, 0.88);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

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

.movie-title {
  min-height: 46px;
  color: #2c242f;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.movie-title:hover {
  color: var(--pink-dark);
}

.movie-info p {
  flex: 1;
  margin: 10px 0 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.movie-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #8b7c8d;
  font-size: 12px;
  font-weight: 800;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
  background: #fff7fb;
  border: 1px solid #ffd7ea;
  border-radius: 999px;
  padding: 5px 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag-row span {
  color: #9d4777;
  background: #fff1f7;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.rank-panel {
  padding: 24px;
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 46px 66px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 218, 234, 0.8);
  border-radius: 18px;
}

.rank-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  border-radius: 14px;
  font-weight: 900;
}

.rank-thumb {
  width: 66px;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff1f7;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-title {
  display: block;
  color: #2c242f;
  font-weight: 900;
  line-height: 1.35;
}

.rank-title:hover {
  color: var(--pink-dark);
}

.rank-item p {
  margin: 6px 0 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.page-hero {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 46px auto 0;
  padding: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(245, 158, 11, 0.22), transparent 34rem),
    radial-gradient(circle at left bottom, rgba(236, 72, 153, 0.24), transparent 32rem),
    rgba(255, 255, 255, 0.72);
}

.slim-hero h1,
.category-hero h1 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 58px);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  padding: 18px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #6d5e70;
  font-size: 13px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  color: var(--text-main);
  background: #ffffff;
  border: 1px solid #ffd8ea;
  border-radius: 14px;
  outline: 0;
  padding: 0 13px;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.10);
}

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

.overview-card {
  padding: 22px;
  transition: 0.24s ease;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(236, 72, 153, 0.16);
}

.overview-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.overview-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  background: #fff1f7;
}

.overview-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.overview-card p {
  min-height: 72px;
  color: var(--text-soft);
  line-height: 1.72;
}

.overview-card span {
  display: inline-flex;
  color: var(--pink-dark);
  font-weight: 900;
}

.category-link-row {
  margin-top: 20px;
}

.detail-wrap {
  padding-top: 40px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #8a7b8d;
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--pink-dark);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.player-column {
  padding: 18px;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d0b10;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(17, 10, 18, 0.28);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0d0b10;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(180deg, rgba(17, 9, 19, 0.08), rgba(17, 9, 19, 0.76));
  cursor: pointer;
  transition: 0.22s ease;
}

.player-cover:hover .play-icon {
  transform: scale(1.08);
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.34);
  transition: 0.22s ease;
}

.play-title {
  max-width: min(560px, 84%);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.detail-info {
  padding: 32px;
}

.detail-info h1 {
  font-size: clamp(32px, 4vw, 52px);
}

.detail-one-line {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.85;
}

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

.info-list div {
  padding: 14px;
  background: #fff7fb;
  border: 1px solid #ffd8ea;
  border-radius: 16px;
}

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

.info-list dd {
  margin: 6px 0 0;
  color: #2d252f;
  font-weight: 900;
}

.detail-tags {
  margin-bottom: 24px;
}

.wide-btn {
  width: 100%;
}

.detail-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.detail-nav-links a {
  flex: 1 1 240px;
  color: var(--pink-dark);
  background: #fff7fb;
  border: 1px solid #ffd8ea;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
}

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

.text-card {
  padding: 28px;
}

.text-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.text-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 16px;
}

.site-footer {
  margin-top: 50px;
  background: linear-gradient(180deg, rgba(255, 241, 247, 0.86), rgba(255, 231, 238, 0.92));
  border-top: 1px solid #ffd4e7;
}

.footer-grid {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: var(--pink-dark);
  font-size: 24px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.site-footer p,
.site-footer a {
  color: #725f74;
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 6px 0;
  font-weight: 800;
}

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

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

.footer-bottom {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: #88758a;
  border-top: 1px solid rgba(244, 114, 182, 0.24);
  font-size: 14px;
}

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

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

  .menu-toggle {
    display: block;
  }

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

  .hero-shell,
  .split-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 500px;
  }

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

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

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

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 68px;
  }

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

  .hero-section {
    min-height: auto;
    padding: 28px 0 36px;
  }

  .hero-intro,
  .hero-copy-card,
  .page-hero,
  .detail-info,
  .player-column,
  .rank-panel,
  .text-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-shell {
    gap: 22px;
  }

  .hero-search,
  .hero-actions,
  .section-heading,
  .detail-nav-links {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-search button {
    width: 100%;
  }

  .hero-slider {
    min-height: 680px;
  }

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

  .hero-visual {
    height: 300px;
    transform: none;
  }

  .slider-controls {
    left: 18px;
    right: 18px;
    bottom: 14px;
  }

  .full-grid,
  .movie-grid,
  .home-grid,
  .related-grid,
  .category-strip,
  .overview-grid,
  .rank-list-grid,
  .detail-content,
  .filter-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movie-card {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
  }

  .movie-poster {
    aspect-ratio: 3 / 4.4;
    height: 100%;
  }

  .movie-title {
    min-height: auto;
  }

  .info-list {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 40px 58px minmax(0, 1fr);
  }

  .rank-thumb {
    width: 58px;
    height: 78px;
  }
}
