:root {
  --bg: #fff7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(236, 72, 153, 0.16);
  --pink: #ec4899;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --dark: #0f172a;
  --shadow: 0 24px 70px rgba(88, 28, 135, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 72, 153, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.18), transparent 30rem),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 42%, #faf5ff 100%);
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 40px rgba(88, 28, 135, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 28px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.28);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--pink);
  transform: translateY(-1px);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.26);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

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

.hero-carousel {
  position: relative;
  width: min(1240px, calc(100% - 28px));
  min-height: 650px;
  margin: 28px auto 34px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--dark);
  box-shadow: 0 35px 100px rgba(30, 41, 59, 0.32);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 360px;
  align-items: center;
  gap: 44px;
  padding: 78px;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1s ease;
}

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

.hero-slide::before,
.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -20% -10%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.35);
  filter: blur(90px);
}

.hero-content,
.hero-card,
.detail-info,
.detail-poster {
  position: relative;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #f9a8d4;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow {
  color: var(--pink);
  border-color: rgba(236, 72, 153, 0.22);
  background: rgba(236, 72, 153, 0.08);
}

.hero-content h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content h2 {
  margin: 0 0 18px;
  color: #fbcfe8;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.mini-tags span,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-weight: 700;
}

.mini-tags span,
.detail-tags span,
.tag-cloud a {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.1);
}

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

.primary-button,
.ghost-button,
.text-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.3);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.text-button {
  color: #f9a8d4;
  padding-inline: 6px;
}

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

.hero-card {
  min-height: 460px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-card span {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background-position: center;
  background-size: cover;
}

.hero-card strong,
.hero-card em {
  position: relative;
  z-index: 2;
  display: block;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-card strong {
  font-size: 26px;
  line-height: 1.2;
}

.hero-card em {
  margin-top: 8px;
  color: #fbcfe8;
  font-style: normal;
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  left: 70px;
  bottom: 46px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 26px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 26px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.hero-dot.is-active {
  width: 46px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

.search-panel,
.section-block,
.page-hero,
.category-overview-card,
.content-card,
.player-section,
.side-card,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.search-panel h2,
.section-heading h2,
.page-hero h1,
.feature-panel h2,
.detail-info h1,
.player-title h2,
.content-card h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.search-panel h2,
.section-heading h2,
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.site-filter-form {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(120px, 0.7fr) minmax(120px, 0.7fr);
  gap: 12px;
}

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

.site-filter-form input,
.site-filter-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(236, 72, 153, 0.18);
  border-radius: 16px;
  outline: none;
  padding: 0 16px;
  color: #1f2937;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-filter-form input:focus,
.site-filter-form select:focus {
  border-color: rgba(236, 72, 153, 0.48);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.section-block,
.page-main {
  margin-top: 34px;
}

.section-block {
  padding: 28px;
}

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

.section-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

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

.section-link {
  color: var(--pink);
  background: rgba(236, 72, 153, 0.1);
}

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

.category-tile {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(236, 72, 153, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(139, 92, 246, 0.12)),
    rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.ranking-item:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(88, 28, 135, 0.18);
}

.category-tile span {
  color: var(--pink);
  font-weight: 900;
}

.category-tile strong {
  font-size: 24px;
}

.category-tile em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(236, 72, 153, 0.16);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(88, 28, 135, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 22;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.movie-card-compact .poster {
  aspect-ratio: 16 / 18;
}

.poster::after,
.ranking-thumb::after,
.detail-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(15, 23, 42, 0.78));
}

.poster-year,
.poster-score,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.poster-year {
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.64);
}

.poster-score {
  right: 12px;
  top: 12px;
  min-width: 42px;
  height: 32px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f59e0b, var(--pink));
}

.movie-card-body {
  padding: 16px;
}

.movie-card-meta {
  display: flex;
  gap: 8px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.movie-card h3 {
  margin: 8px 0;
  font-size: 18px;
  line-height: 1.25;
}

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

.movie-card p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.hot-layout,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 360px;
  gap: 24px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 44px 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(236, 72, 153, 0.14);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-full .ranking-item {
  grid-template-columns: 56px 96px minmax(0, 1fr);
}

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

.ranking-thumb {
  position: relative;
  display: block;
  width: 72px;
  aspect-ratio: 16 / 20;
  overflow: hidden;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
}

.ranking-full .ranking-thumb {
  width: 96px;
}

.ranking-info strong,
.ranking-info em {
  display: block;
}

.ranking-info strong {
  font-size: 16px;
  line-height: 1.35;
}

.ranking-info em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.feature-panel,
.side-card {
  padding: 24px;
  align-self: start;
}

.feature-panel h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.feature-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.page-main {
  padding-bottom: 40px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 245, 255, 0.9)),
    radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.2), transparent 28rem);
}

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

.category-hero .site-filter-form {
  margin-top: 26px;
}

.category-overview-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

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

.category-overview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.category-overview-head span {
  color: var(--pink);
  font-weight: 900;
}

.category-overview-head h2 {
  margin: 6px 0 8px;
  font-size: 28px;
}

.category-overview-head p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.detail-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  padding: 34px;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 15%, rgba(236, 72, 153, 0.42), transparent 28rem),
    linear-gradient(135deg, #111827, #312e81 52%, #0f172a);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.28);
}

.detail-poster {
  min-height: 480px;
  overflow: hidden;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
}

.lead-text {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.8;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-stats span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
}

.detail-stats strong {
  color: #ffffff;
  font-size: 20px;
}

.player-section {
  margin-top: 28px;
  overflow: hidden;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #020617;
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.28), rgba(15, 23, 42, 0.72));
  cursor: pointer;
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 24px 50px rgba(236, 72, 153, 0.42);
  font-size: 34px;
}

.player-title {
  padding: 24px;
}

.player-title p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.detail-content .content-card:first-child {
  grid-column: 1 / -1;
}

.content-card {
  padding: 26px;
}

.content-card p {
  color: #374151;
  font-size: 16px;
  line-height: 1.95;
}

.info-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

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

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

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

.detail-switch a {
  padding: 18px;
  border-radius: 20px;
  color: #6d28d9;
  background: rgba(139, 92, 246, 0.1);
  font-weight: 900;
}

.site-footer {
  margin-top: 44px;
  padding: 42px 0 26px;
  color: #e5e7eb;
  background:
    radial-gradient(circle at 20% 0%, rgba(236, 72, 153, 0.28), transparent 26rem),
    linear-gradient(135deg, #111827, #312e81 50%, #0f172a);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-grid p {
  max-width: 460px;
  color: #d1d5db;
  line-height: 1.8;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

.footer-links a {
  color: #d1d5db;
}

.footer-links a:hover {
  color: #f9a8d4;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 14px;
}

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

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

  .mobile-menu-button {
    display: block;
  }

  .hero-slide,
  .detail-hero,
  .hot-layout,
  .split-section,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    padding: 52px;
  }

  .hero-card {
    min-height: 320px;
  }

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

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

@media (max-width: 760px) {
  .shell,
  .nav-shell,
  .hero-carousel {
    width: min(100% - 20px, 100%);
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand {
    font-size: 20px;
  }

  .hero-carousel {
    min-height: 760px;
    border-radius: 26px;
  }

  .hero-slide {
    align-content: center;
    gap: 26px;
    padding: 28px;
  }

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

  .hero-controls {
    left: 24px;
    bottom: 22px;
  }

  .search-panel,
  .section-block,
  .page-hero,
  .category-overview-card,
  .detail-hero,
  .content-card {
    padding: 20px;
    border-radius: 22px;
  }

  .site-filter-form,
  .category-grid,
  .movie-grid,
  .compact-grid,
  .detail-switch {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ranking-full .ranking-item,
  .ranking-item {
    grid-template-columns: 38px 68px minmax(0, 1fr);
  }

  .ranking-full .ranking-thumb,
  .ranking-thumb {
    width: 68px;
  }

  .detail-poster {
    min-height: 380px;
  }

  .video-overlay span {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
