:root {
  --pink: #ec4899;
  --rose: #f43f5e;
  --orange: #fb923c;
  --yellow: #fde68a;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff1f2;
  --card: #ffffff;
  --line: rgba(236, 72, 153, 0.14);
  --shadow: 0 18px 50px rgba(236, 72, 153, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #fff7ed 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

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.86);
  border-bottom: 1px solid rgba(236, 72, 153, 0.12);
  box-shadow: 0 12px 34px rgba(244, 63, 94, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark,
.footer-logo span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--rose), var(--orange));
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
  font-size: 16px;
}

.brand-name {
  font-size: 26px;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--pink), var(--rose), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 14px;
  color: #374151;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.mobile-link:hover {
  color: var(--pink);
  background: linear-gradient(90deg, #fce7f3, #ffedd5);
}

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

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  border: 2px solid #fbcfe8;
  outline: none;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  transition: 0.25s ease;
}

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

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

.header-search button,
.mobile-search button {
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  cursor: pointer;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fff1f2;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  border-radius: 999px;
  background: var(--rose);
}

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

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.mobile-search input {
  width: 100%;
  padding: 11px 16px;
}

.hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: linear-gradient(115deg, #ec4899 0%, #f43f5e 52%, #fb923c 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 65%);
}

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

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

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

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.12) contrast(1.08);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.72), rgba(236, 72, 153, 0.32), rgba(251, 146, 60, 0.12)),
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.28), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 54px;
  color: #ffffff;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--pink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #fff7ed;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero-copy h1 {
  margin: 0 0 20px;
  max-width: 760px;
  font-size: clamp(38px, 5.8vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #fff7fb;
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.detail-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.primary-button {
  padding: 14px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--rose), var(--orange));
  box-shadow: 0 16px 36px rgba(236, 72, 153, 0.28);
}

.ghost-button {
  padding: 13px 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

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

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.06));
}

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

.hero-poster span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 38px;
  text-shadow: 0 0 0 transparent;
}

.hero-poster span::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

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

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

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

.section {
  padding: 70px 0;
}

.soft-section {
  background: linear-gradient(90deg, #fce7f3, #fff7ed);
}

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

.section-head h2,
.rank-title h2,
.top-rank-panel h2,
.player-section h2,
.content-card h2,
.side-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.section-more {
  color: var(--pink);
  font-size: 15px;
}

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

.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.compact-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.small-gap {
  gap: 20px;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(236, 72, 153, 0.12);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 68px rgba(236, 72, 153, 0.22);
}

.movie-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #fce7f3, #fed7aa);
}

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

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

.poster-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.62));
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.74);
  transition: 0.28s ease;
}

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

.quality-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.quality-badge {
  right: 12px;
  bottom: 12px;
  background: rgba(17, 24, 39, 0.74);
}

.rank-badge {
  left: 12px;
  top: 12px;
  background: linear-gradient(135deg, #f59e0b, var(--rose));
}

.card-body {
  padding: 18px;
}

.compact-card .card-body {
  padding: 14px;
}

.card-meta,
.card-foot,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.card-meta {
  margin-bottom: 8px;
}

.movie-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.25s ease;
}

.compact-card h3 {
  font-size: 16px;
}

.movie-card:hover h3 {
  color: var(--pink);
}

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

.card-foot span:last-child {
  color: var(--pink);
  padding: 4px 10px;
  border-radius: 999px;
  background: #fce7f3;
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 24px;
}

.category-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.category-tile,
.category-card-large,
.filter-panel,
.rank-panel,
.top-rank-panel,
.content-card,
.side-card {
  border: 1px solid rgba(236, 72, 153, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.category-tile {
  padding: 24px;
  transition: 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
}

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

.category-tile h3,
.category-large-body h2,
.side-card h2 {
  margin: 14px 0 8px;
}

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

.tile-links,
.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tile-links a,
.category-samples a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pink);
  background: #fce7f3;
  font-size: 13px;
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
}

.rank-panel,
.top-rank-panel {
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.rank-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rank-title span {
  color: #f59e0b;
  font-size: 26px;
}

.rank-row,
.top-rank-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.rank-row:last-child,
.top-rank-row:last-child {
  border-bottom: 0;
}

.rank-row span,
.top-rank-row span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
}

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

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

.page-hero {
  padding: 76px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.26), transparent 25%),
    linear-gradient(115deg, var(--pink), var(--rose), var(--orange));
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #fff7ed;
  font-size: 18px;
}

.page-hero .eyebrow {
  color: #fff7ed;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(31, 41, 55, 0.7);
  font-weight: 800;
}

.breadcrumb.light {
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px 190px;
  gap: 14px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 12px 16px;
}

.category-large-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.category-card-large {
  overflow: hidden;
}

.category-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fce7f3, #fed7aa);
}

.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.category-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.category-cover span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
}

.category-large-body {
  padding: 22px;
}

.rank-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
}

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

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

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: blur(4px) saturate(1.2);
  transform: scale(1.04);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17, 24, 39, 0.94), rgba(236, 72, 153, 0.48), rgba(251, 146, 60, 0.3));
}

.detail-head {
  position: relative;
  z-index: 2;
  padding: 54px 0 66px;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #fce7f3, #fed7aa);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

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

.detail-copy .eyebrow {
  color: #fff7ed;
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: #fff7ed;
  font-size: 20px;
}

.detail-meta {
  margin-bottom: 18px;
  color: #ffffff;
}

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

.player-section,
.content-card,
.side-card {
  margin-bottom: 24px;
}

.player-section h2,
.content-card h2,
.side-card h2 {
  margin-bottom: 16px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #050505;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.22);
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.player-veil {
  position: absolute;
  inset: 0;
  border: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at center, rgba(236, 72, 153, 0.28), transparent 36%);
  cursor: pointer;
  transition: 0.25s ease;
}

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

.player-start {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 34px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.player-veil strong {
  max-width: 80%;
  font-size: clamp(20px, 3vw, 34px);
}

.content-card,
.side-card {
  padding: 24px;
}

.content-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.side-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.side-card div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(236, 72, 153, 0.12);
}

.side-card div:last-child {
  border-bottom: 0;
}

.side-card dt {
  color: var(--muted);
  font-weight: 900;
}

.side-card dd {
  margin: 0;
  color: var(--ink);
}

.side-card a {
  color: var(--pink);
  font-weight: 900;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #831843, #9f1239, #c2410c);
}

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

.footer-logo span {
  background: #ffffff;
  color: var(--pink);
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #ffe4e6;
}

.footer-group {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-group h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.footer-group a {
  color: #ffe4e6;
}

.footer-group a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffe4e6;
  font-size: 14px;
}

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

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

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

  .hero-content,
  .detail-grid,
  .two-column,
  .rank-layout,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 28px;
    padding: 48px 0 70px;
  }

  .hero-poster {
    width: min(280px, 78vw);
    transform: none;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .top-rank-panel,
  .detail-side {
    position: static;
  }

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

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

  .brand-name {
    font-size: 21px;
  }

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

  .hero {
    min-height: 620px;
  }

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

  .hero-actions {
    display: grid;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .movie-card {
    border-radius: 18px;
  }

  .card-body {
    padding: 13px;
  }

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card p {
    min-height: 42px;
    font-size: 12px;
  }

  .card-foot,
  .card-meta {
    gap: 6px;
    font-size: 11px;
  }

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

  .page-hero {
    padding: 52px 0;
  }

  .detail-head {
    padding: 34px 0 48px;
  }

  .detail-copy h1 {
    font-size: 34px;
  }

  .detail-one-line {
    font-size: 17px;
  }

  .content-card,
  .side-card {
    padding: 18px;
  }

  .video-shell {
    border-radius: 20px;
  }
}
