:root {
  color-scheme: light;
  --color-bg: #f8fafc;
  --color-card: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-orange: #ea580c;
  --color-red: #dc2626;
  --color-yellow: #f59e0b;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, #ea580c 0%, #dc2626 55%, #e11d48 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.22);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand__icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 21px;
  letter-spacing: 0.04em;
}

.brand__text small {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.88;
}

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

.desktop-nav > a,
.nav-dropdown > button {
  color: #ffffff;
  padding: 8px 0;
  border: 0;
  background: transparent;
  opacity: 0.94;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown:hover > button {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 260px;
  padding: 10px;
  display: grid;
  gap: 4px;
  transform: translateX(-50%) translateY(8px);
  border-radius: 16px;
  background: #ffffff;
  color: #374151;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
}

.nav-dropdown__panel a:hover {
  color: var(--color-orange);
  background: #fff7ed;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(270px, 26vw);
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  padding: 10px 12px 10px 16px;
  color: #ffffff;
  background: transparent;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.header-search button {
  border: 0;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 12px;
}

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

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

.mobile-nav a,
.mobile-nav form {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 8px 10px;
  border-radius: 999px;
}

.mobile-nav button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
  padding-inline: 12px;
}

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

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

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

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

.hero-overlay,
.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.78), rgba(17, 24, 39, 0.52), rgba(17, 24, 39, 0.12));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 680px;
  color: #ffffff;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #ea580c, #dc2626);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
}

.hero-content h1,
.detail-hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-content p,
.detail-hero p,
.page-hero p {
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(90deg, #ea580c, #dc2626);
}

.button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.button--light {
  color: var(--color-orange);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

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

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

.section-block {
  padding: 52px 0;
}

.section-band {
  padding: 52px 0;
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.section-link {
  color: var(--color-orange);
  font-weight: 800;
  white-space: nowrap;
}

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

.category-tile,
.category-overview-card__head {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  border-radius: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-tile__icon {
  font-size: 34px;
}

.category-tile strong,
.category-overview-card__head strong {
  font-size: 20px;
}

.category-tile small,
.category-overview-card__head small {
  opacity: 0.86;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 13px;
}

.category-tile--orange-red { background: linear-gradient(135deg, #f97316, #dc2626); }
.category-tile--red-pink { background: linear-gradient(135deg, #ef4444, #db2777); }
.category-tile--pink-purple { background: linear-gradient(135deg, #ec4899, #7c3aed); }
.category-tile--slate-blue { background: linear-gradient(135deg, #334155, #2563eb); }
.category-tile--yellow-orange { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.category-tile--cyan-blue { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.category-tile--indigo-purple { background: linear-gradient(135deg, #4f46e5, #9333ea); }
.category-tile--green-teal { background: linear-gradient(135deg, #16a34a, #0d9488); }
.category-tile--rose-orange { background: linear-gradient(135deg, #f43f5e, #f97316); }
.category-tile--blue-indigo { background: linear-gradient(135deg, #2563eb, #4f46e5); }
.category-tile--red-orange { background: linear-gradient(135deg, #dc2626, #f97316); }
.category-tile--amber-brown { background: linear-gradient(135deg, #d97706, #92400e); }

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

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

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

.movie-card {
  background: var(--color-card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.movie-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #374151);
}

.movie-card--featured .movie-card__cover,
.movie-card--ranking .movie-card__cover {
  aspect-ratio: 3 / 4;
}

.movie-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.movie-card:hover .movie-card__cover img {
  transform: scale(1.07);
  opacity: 0.92;
}

.movie-card__year,
.movie-card__type,
.rank-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.movie-card__year {
  right: 10px;
  bottom: 10px;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.66);
}

.movie-card__type {
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  background: linear-gradient(90deg, #ea580c, #dc2626);
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #facc15, #ea580c);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.3);
}

.movie-card__body {
  padding: 16px;
}

.movie-card__body h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card__body h3 a:hover {
  color: var(--color-orange);
}

.movie-card__meta,
.movie-card__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.movie-card__desc {
  margin-top: 10px;
  min-height: 44px;
}

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

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #9a3412;
  background: #fff7ed;
  font-size: 12px;
  font-weight: 700;
}

.tag-row--light span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

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

.compact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.compact-card img {
  width: 112px;
  height: 74px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

.compact-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.compact-card small {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
}

.compact-rank {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #facc15, #ea580c);
}

.ranking-panel,
.content-card,
.info-card,
.filter-panel,
.search-page__form {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.ranking-panel,
.content-card,
.info-card {
  padding: 24px;
}

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

.page-hero {
  position: relative;
  padding: 72px 0;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(135deg, #ea580c, #dc2626 55%, #e11d48);
}

.page-hero--small h1 {
  margin-bottom: 12px;
}

.page-hero span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

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

.category-overview-card {
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: 0.2s ease;
}

.category-overview-card__head {
  min-height: 126px;
  margin-bottom: 14px;
}

.category-overview-card p {
  color: var(--color-muted);
  margin: 8px 6px 14px;
}

.category-overview-card__samples {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.category-overview-card .compact-card {
  box-shadow: none;
  border: 1px solid var(--color-line);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) minmax(140px, 0.7fr) minmax(160px, 0.8fr) minmax(140px, 0.7fr) auto auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 24px;
}

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

.filter-panel input,
.filter-panel select,
.search-page__form input {
  width: 100%;
  border: 1px solid var(--color-line);
  outline: none;
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--color-text);
  background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-page__form input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.filter-panel button,
.search-page__form button {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(90deg, #ea580c, #dc2626);
  cursor: pointer;
}

.filter-panel strong {
  color: var(--color-orange);
  white-space: nowrap;
}

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

.detail-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  filter: blur(3px);
  transform: scale(1.04);
}

.detail-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__content {
  position: relative;
  z-index: 2;
  padding: 38px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

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

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  background: #111827;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 52px 0 20px;
}

.detail-main,
.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.player-section {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #030712;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #030712;
}

.video-shell video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.video-play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.1), rgba(3, 7, 18, 0.55));
  cursor: pointer;
}

.video-play-button span {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #ea580c, #dc2626);
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.36);
}

.video-shell.is-playing .video-play-button {
  display: none;
}

.content-card h2,
.info-card h2,
.ranking-sidebar h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.content-card p,
.info-card p {
  margin: 0;
  color: #374151;
}

.meta-table {
  display: grid;
  gap: 12px;
  margin: 0;
}

.meta-table div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.meta-table dt {
  color: var(--color-muted);
  font-weight: 900;
}

.meta-table dd {
  margin: 0;
}

.prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.prev-next a,
.side-category-link {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  color: var(--color-orange);
  font-weight: 800;
}

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

.side-list .compact-card {
  box-shadow: none;
  border: 1px solid var(--color-line);
}

.side-category-link + .side-category-link {
  margin-top: 10px;
}

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

.ranking-sidebar {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

.search-page__form {
  display: flex;
  gap: 12px;
  padding: 18px;
  margin-bottom: 18px;
}

.search-page__form input {
  flex: 1;
}

.search-summary {
  margin-bottom: 22px;
  color: var(--color-muted);
  font-weight: 800;
}

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

.site-footer {
  margin-top: 48px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 19px;
}

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

.site-footer p,
.site-footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #fb923c;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #9ca3af;
}

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

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

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

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

  .category-overview-grid,
  .movie-grid--featured,
  .movie-grid--ranking,
  .movie-grid--related,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .ranking-sidebar {
    position: static;
  }

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

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

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 64px;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .hero-content h1,
  .detail-hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

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

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

  .category-grid,
  .movie-grid,
  .movie-grid--featured,
  .movie-grid--ranking,
  .movie-grid--related,
  .category-overview-grid,
  .info-grid,
  .ranking-list,
  .compact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .prev-next {
    grid-template-columns: 1fr;
  }

  .search-page__form {
    flex-direction: column;
  }
}
