:root {
  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --green: #14b8a6;
  --orange: #f97316;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 22px 60px rgba(31, 41, 55, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, #fff1f7 0%, #f5f0ff 48%, #eef6ff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(31, 41, 55, 0.08);
}

.top-ribbon {
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
}

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

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

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

.brand-text {
  display: grid;
  gap: 2px;
}

.brand strong,
.footer-brand strong {
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  color: transparent;
}

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

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

.nav-link {
  color: #374151;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.big-search input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  outline: none;
  background: #ffffff;
}

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

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

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #374151;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
}

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

.mobile-link {
  padding: 8px 0;
  font-weight: 700;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.48;
  animation: floatGlow 7s ease-in-out infinite;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  left: 7%;
  top: 8%;
  background: #f9a8d4;
}

.hero-glow-two {
  width: 340px;
  height: 340px;
  right: 5%;
  bottom: 4%;
  background: #c4b5fd;
  animation-delay: -2s;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 42px;
  align-items: center;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
  font-weight: 700;
  font-size: 14px;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.primary-action,
.detail-actions a:first-child,
.cta-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.secondary-action,
.detail-actions a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  color: #374151;
  background: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-action:hover,
.secondary-action:hover,
.detail-actions a:hover,
.cta-section a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(31, 41, 55, 0.16);
}

.hero-categories,
.tag-cloud,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-categories a,
.tag-cloud a,
.detail-tags a {
  padding: 8px 13px;
  border-radius: 999px;
  background: #ffffff;
  color: #4b5563;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
  transition: all 0.2s ease;
}

.hero-categories a:hover,
.tag-cloud a:hover,
.detail-tags a:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transform: translateY(-2px);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-shade,
.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.82));
}

.hero-slide-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #ffffff;
}

.hero-slide-copy span,
.feature-content em {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.88);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.hero-slide-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
}

.hero-slide-copy p {
  max-width: 640px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.hero-slide-copy a {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--pink);
  font-weight: 900;
}

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

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

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

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

.glass-section {
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(10px);
}

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

.section-head h2,
.tag-section h2,
.prose-card h2,
.side-card h2,
.player-info h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-head > a {
  color: var(--pink);
  font-weight: 800;
}

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

.all-grid {
  align-items: stretch;
}

.movie-card,
.feature-card,
.mini-card,
.category-overview-card,
.filter-panel,
.prose-card,
.side-card,
.player-card,
.ranking-row {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(31, 41, 55, 0.08);
}

.movie-card,
.feature-card,
.mini-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover,
.feature-card:hover,
.mini-card:hover,
.category-overview-card:hover,
.category-chip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(31, 41, 55, 0.15);
}

.poster-link,
.feature-card a,
.mini-card a {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: #111827;
}

.poster-wrap img,
.feature-card img,
.mini-card img,
.compact-link img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.card-body strong,
.compact-link strong,
.mini-card strong,
.feature-content strong {
  color: #1f2937;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.card-body em,
.compact-link em,
.category-chip-card em,
.category-overview-card em {
  color: #6b7280;
  font-style: normal;
  line-height: 1.6;
}

.card-body small,
.compact-link small {
  color: #9ca3af;
  font-size: 12px;
}

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

.feature-card a {
  position: relative;
  min-height: 330px;
}

.feature-card img {
  position: absolute;
  inset: 0;
}

.feature-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  color: #ffffff;
}

.feature-content strong {
  color: #ffffff;
  font-size: 26px;
}

.feature-content small {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.category-band {
  background: linear-gradient(90deg, rgba(252, 231, 243, 0.78), rgba(237, 233, 254, 0.78), rgba(219, 234, 254, 0.78));
}

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

.category-chip-card,
.category-main-link {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-chip-card span,
.category-main-link span,
.category-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.category-chip-card strong,
.category-main-link strong {
  color: #1f2937;
  font-size: 18px;
  font-weight: 900;
}

.compact-list {
  display: grid;
  gap: 16px;
}

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

.compact-link {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
}

.compact-link img {
  width: 112px;
  height: 100px;
  border-radius: 14px;
}

.compact-link span {
  display: grid;
  gap: 6px;
}

.rank-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rank-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #4b5563;
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.rank-tabs button.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

.rank-panel {
  display: none;
}

.rank-panel.is-active {
  display: block;
}

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

.rank-item {
  position: relative;
}

.rank-item > span,
.ranking-number {
  position: absolute;
  z-index: 5;
  left: -8px;
  top: -8px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #facc15, #f97316);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.30);
}

.mini-card a {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.mini-card img {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.tag-section {
  background: linear-gradient(135deg, rgba(255, 241, 247, 0.95), rgba(245, 240, 255, 0.95));
  text-align: center;
}

.tag-section h2 {
  margin-bottom: 24px;
}

.cta-section {
  padding: 76px 0;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  text-align: center;
}

.cta-section .brand-mark {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.22);
}

.cta-section h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
}

.cta-section p {
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 18px;
  opacity: 0.92;
}

.cta-section a {
  background: #ffffff;
  color: var(--pink);
}

.sub-page,
.detail-page {
  min-height: 70vh;
}

.page-hero,
.detail-hero {
  position: relative;
  padding: 62px 0;
  background: linear-gradient(135deg, rgba(252, 231, 243, 0.85), rgba(237, 233, 254, 0.85), rgba(219, 234, 254, 0.85));
  overflow: hidden;
}

.small-hero h1,
.category-hero h1,
.detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.08;
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.small-hero p,
.category-hero p,
.detail-copy p {
  max-width: 780px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.category-hero .container {
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--pink);
  font-weight: 800;
}

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

.category-overview-card {
  padding: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-samples {
  display: grid;
  gap: 8px;
  padding: 0 10px 10px;
}

.category-samples a {
  color: #6b7280;
  font-size: 14px;
}

.category-samples a:hover {
  color: var(--pink);
}

.filter-panel {
  margin: 32px 0 0;
  padding: 24px;
}

.filter-title {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 900;
}

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

.filter-grid label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-weight: 700;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #ffffff;
  outline: none;
}

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

.ranking-section {
  padding-top: 36px;
}

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

.ranking-row {
  position: relative;
  padding-left: 36px;
}

.ranking-row .ranking-number {
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.big-search {
  max-width: 720px;
  margin-top: 26px;
}

.big-search input {
  flex: 1;
  padding: 15px 20px;
  font-size: 17px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 38px;
  align-items: center;
}

.detail-poster {
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: var(--shadow);
}

.breadcrumb-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #6b7280;
  font-weight: 700;
}

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

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.meta-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #4b5563;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
  font-weight: 800;
}

.player-section {
  padding-bottom: 26px;
}

.player-card {
  overflow: hidden;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #030712;
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #030712;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.35), rgba(17, 24, 39, 0.72));
  cursor: pointer;
}

.player-cover span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.34);
  font-size: 30px;
}

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

.player-cover.is-hidden {
  display: none;
}

.player-info {
  padding: 24px;
}

.player-info p {
  margin: 10px 0 0;
  color: #6b7280;
  line-height: 1.7;
}

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

.prose-card,
.side-card {
  padding: 26px;
}

.prose-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

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

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

.detail-tags {
  margin-top: 26px;
}

.related-list {
  margin-top: 18px;
}

.side-card {
  position: sticky;
  top: 96px;
}

.detail-neighbor {
  padding: 20px 0 58px;
}

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

.neighbor-grid a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.neighbor-grid a:last-child {
  text-align: right;
}

.neighbor-grid span {
  color: #9ca3af;
  font-weight: 800;
}

.neighbor-grid strong {
  color: #1f2937;
  font-size: 18px;
}

.site-footer {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 44px 0;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #1f2937;
  font-size: 18px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #6b7280;
  line-height: 1.8;
}

.site-footer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  padding: 18px 0;
  color: #6b7280;
  border-top: 1px solid var(--line);
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .side-card {
    position: static;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero-carousel {
    min-height: 480px;
  }

  .detail-poster {
    max-width: 360px;
    height: 480px;
  }

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

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

  .hero-section {
    padding-top: 42px;
  }

  .hero-carousel {
    min-height: 420px;
    border-radius: 24px;
  }

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

  .hero-dots {
    left: 18px;
    right: auto;
    bottom: 16px;
  }

  .card-grid,
  .feature-grid,
  .rank-grid,
  .category-grid,
  .category-overview-grid,
  .neighbor-grid {
    grid-template-columns: 1fr;
  }

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

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

  .poster-wrap {
    height: 320px;
  }

  .detail-poster {
    width: 100%;
    max-width: none;
    height: 440px;
  }

  .compact-link {
    grid-template-columns: 96px 1fr;
  }

  .compact-link img {
    width: 96px;
    height: 96px;
  }

  .player-card,
  .prose-card,
  .side-card {
    border-radius: 18px;
  }
}
