:root {
  color-scheme: light;
  --bg: #fff7fb;
  --bg-soft: #fff1f7;
  --surface: #ffffff;
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f9cfe0;
  --pink: #ec4899;
  --rose: #f43f5e;
  --cherry: #db2777;
  --shadow: 0 20px 45px rgba(190, 24, 93, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 63, 94, 0.16), transparent 30rem),
    linear-gradient(180deg, #fff1f7 0%, #ffffff 45%, #fff7fb 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 2px solid rgba(249, 168, 212, 0.45);
  box-shadow: 0 12px 28px rgba(190, 24, 93, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

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

.desktop-nav > a,
.nav-dropdown > button {
  padding: 8px 2px;
  color: #374151;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown > button:hover {
  color: var(--pink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 280px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  padding: 8px 10px;
  border-radius: 12px;
  color: #4b5563;
}

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

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

.header-search input,
.mobile-panel input,
.inline-filter input {
  width: 100%;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  padding: 11px 16px;
  color: #374151;
  background: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search button,
.mobile-panel button,
.primary-button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: white;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 14px 25px rgba(236, 72, 153, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-panel button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(236, 72, 153, 0.34);
}

.primary-button.small {
  padding: 10px 18px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 11px 18px;
  color: white;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: #374151;
  font-size: 28px;
  cursor: pointer;
}

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

.mobile-panel.is-open {
  display: block;
  animation: slideDown 0.22s ease both;
}

.mobile-panel form {
  display: flex;
  gap: 8px;
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.mobile-panel nav a {
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff7fb;
  color: #4b5563;
}

.hero-carousel {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-missing {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 22rem),
    linear-gradient(135deg, #831843, #db2777 48%, #fb7185);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.22), rgba(17, 24, 39, 0.82)),
    linear-gradient(90deg, rgba(17, 24, 39, 0.72), transparent 70%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 76px;
  width: min(1120px, calc(100% - 40px));
  transform: translateX(-50%);
  color: white;
  animation: slideUp 0.75s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--cherry);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #ffd3e6;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-weight: 950;
  line-height: 1.08;
}

.hero-content h1 {
  max-width: 840px;
  font-size: clamp(36px, 6vw, 72px);
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.hero-content p {
  max-width: 700px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.75;
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: white;
}

.content-section,
.page-shell,
.detail-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.content-section {
  padding: 46px 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -38px;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.stat-card {
  padding: 24px;
  border: 1px solid rgba(249, 168, 212, 0.56);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  color: var(--cherry);
  font-size: 32px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.section-heading h2,
.ranking-card h2,
.prose-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  color: #1f2937;
}

.section-heading p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.category-card,
.category-overview-card,
.movie-card,
.ranking-card,
.prose-card,
.video-player-card {
  border: 1px solid rgba(249, 168, 212, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(190, 24, 93, 0.09);
}

.category-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  border-color: #f9a8d4;
  box-shadow: var(--shadow);
}

.category-card span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fdf2f8;
  font-size: 24px;
}

.category-card strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.category-card em {
  color: var(--muted);
  font-style: normal;
}

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

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

.movie-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
}

.rail-item {
  scroll-snap-align: start;
}

.movie-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.poster-wrap,
.detail-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 11rem),
    linear-gradient(135deg, #831843, #db2777 55%, #fb7185);
  aspect-ratio: 2 / 3;
}

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

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

.poster-missing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 58%);
}

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.86);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: 0.2s ease;
}

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

.card-body {
  padding: 16px;
}

.card-meta-line,
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.card-category {
  color: var(--cherry);
  font-weight: 900;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

.movie-card h3 a:hover,
.rank-title:hover,
.table-wrap a:hover,
.category-samples a:hover,
.text-link:hover {
  color: var(--pink);
}

.movie-card p {
  display: -webkit-box;
  min-height: 50px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #6b7280;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-tags,
.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill,
.tag-cloud-item,
.genre-list span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  padding: 5px 10px;
  color: #be185d;
  background: #fff7fb;
  font-size: 12px;
  font-weight: 800;
}

.card-foot {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #fce7f3;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 145px 1fr;
}

.movie-card-list .poster-wrap {
  height: 100%;
}

.editorial-block {
  width: min(1240px, calc(100% - 32px));
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(253, 242, 248, 0.96), rgba(255, 228, 230, 0.96));
  box-shadow: var(--shadow);
}

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

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

.ranking-card {
  position: sticky;
  top: 94px;
  padding: 22px;
}

.ranking-card ol {
  padding: 0;
  margin: 18px 0 16px;
  list-style: none;
}

.rank-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #fce7f3;
}

.rank-no,
.table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  font-weight: 950;
}

.rank-title {
  font-weight: 850;
}

.rank-heat {
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  color: var(--cherry);
  font-weight: 900;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud-item {
  padding: 9px 14px;
  font-size: 14px;
  transition: 0.2s ease;
}

.tag-cloud-item:hover {
  transform: translateY(-2px);
  background: #fce7f3;
}

.page-shell {
  padding: 34px 0 60px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin: 24px 0 20px;
  padding: 54px;
  border-radius: 34px;
  color: #1f2937;
  background:
    radial-gradient(circle at right top, rgba(236, 72, 153, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(253, 242, 248, 0.95));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.inline-filter {
  display: flex;
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.category-overview-card {
  padding: 20px;
  transition: 0.2s ease;
}

.category-overview-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-overview-head span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fdf2f8;
  font-size: 28px;
}

.category-overview-head h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.category-overview-head p {
  margin: 0;
  color: var(--muted);
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff7fb;
  color: #4b5563;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #fbcfe8;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.ranking-table th,
.ranking-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #fce7f3;
  text-align: left;
}

.ranking-table th {
  color: #be185d;
  background: #fdf2f8;
  font-size: 14px;
}

.search-status {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #fbcfe8;
  border-radius: 18px;
  color: #be185d;
  background: #fff7fb;
  font-weight: 800;
}

.detail-shell {
  padding: 30px 0 70px;
}

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

.breadcrumb a {
  color: var(--cherry);
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(249, 168, 212, 0.55);
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(244, 63, 94, 0.14), transparent 24rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.detail-poster {
  border-radius: 26px;
  box-shadow: 0 24px 44px rgba(190, 24, 93, 0.18);
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-info h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.detail-one-line {
  max-width: 850px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta div {
  padding: 14px;
  border: 1px solid #fce7f3;
  border-radius: 18px;
  background: #fff7fb;
}

.detail-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-meta dd {
  margin: 5px 0 0;
  font-weight: 950;
}

.detail-tags {
  margin: 14px 0 24px;
}

.player-section .section-heading {
  align-items: start;
}

.video-player-card {
  position: relative;
  overflow: hidden;
  background: #020617;
  aspect-ratio: 16 / 9;
}

.video-player-card video {
  width: 100%;
  height: 100%;
  background: black;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: white;
  cursor: pointer;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2), rgba(2, 6, 23, 0.5));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
  font-size: 34px;
}

.player-overlay strong {
  font-size: 20px;
}

.video-player-card.is-playing .player-overlay,
.video-player-card.is-ready .player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fecdd3;
  background: rgba(127, 29, 29, 0.78);
}

.player-message:not(:empty) {
  display: block;
}

.prose-card {
  padding: 30px;
}

.prose-card p,
.prose-card li {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
}

.prose-card h2 + p,
.prose-card h2 + ul {
  margin-top: 12px;
}

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

.site-footer {
  margin-top: 34px;
  border-top: 2px solid rgba(249, 168, 212, 0.45);
  background: linear-gradient(135deg, #fff7fb, #ffe4e6);
}

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

.footer-inner p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-links a {
  color: #be185d;
  font-weight: 800;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

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

  .movie-grid-compact,
  .editor-grid,
  .split-layout,
  .detail-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    position: static;
  }

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

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

  .brand {
    font-size: 19px;
  }

  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    bottom: 64px;
  }

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

  .hero-control {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .intro-strip,
  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .detail-meta {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 34px 0;
  }

  .section-heading {
    display: block;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 26px;
  }

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

  .movie-card-list {
    grid-template-columns: 120px 1fr;
  }

  .movie-card-list .movie-card p,
  .movie-card-list p {
    display: none;
  }

  .detail-hero {
    padding: 20px;
    border-radius: 26px;
  }

  .prose-card {
    padding: 22px;
  }

  .footer-inner {
    padding: 34px 0;
  }
}
