:root {
  --green-950: #052e1a;
  --green-900: #064e2f;
  --green-800: #06603a;
  --green-700: #047044;
  --green-600: #059669;
  --green-500: #10b981;
  --emerald-400: #34d399;
  --lime-300: #bef264;
  --yellow-300: #fde047;
  --orange-500: #f97316;
  --gray-950: #0b1120;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 80, 45, 0.16);
  --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: #f7fbf8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

img {
  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;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-800), var(--green-600), #0d9488);
  box-shadow: 0 12px 30px rgba(5, 46, 26, 0.22);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-logo__mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--yellow-300), var(--lime-300));
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.site-logo__text {
  font-size: 21px;
}

.site-logo--footer .site-logo__mark {
  color: var(--green-950);
}

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

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-300);
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.site-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(4, 82, 50, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.site-search input {
  width: 190px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  padding: 8px 10px 8px 14px;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.site-search button {
  border: 0;
  color: var(--green-900);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 750;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600) 48%, #0f766e);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(253, 224, 71, 0.24), transparent 26%),
    radial-gradient(circle at 72% 40%, rgba(52, 211, 153, 0.33), transparent 28%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.05));
}

.hero-slider {
  position: relative;
  z-index: 1;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 64px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-slide__image {
  order: 2;
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform: rotate(1deg);
}

.hero-slide__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 46, 26, 0.58));
}

.hero-slide__image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-slide.is-active .hero-slide__image img {
  transform: scale(1.04);
}

.hero-slide__content {
  order: 1;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.detail-hero .eyebrow,
.page-hero .eyebrow,
.section-heading--light .eyebrow {
  color: var(--yellow-300);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 0 0 14px;
  color: var(--yellow-300);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
}

.hero p {
  max-width: 610px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.tag-list span {
  color: var(--green-700);
  background: #e8f8ef;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  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);
}

.button--light {
  color: var(--green-700);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(5, 46, 26, 0.24);
}

.button--ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

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

.hero-dot.is-active {
  width: 32px;
  background: var(--yellow-300);
}

.section {
  padding: 72px 0;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background: linear-gradient(180deg, #f4fbf7, #ecf8f1);
}

.section--dark {
  color: var(--white);
  background: linear-gradient(180deg, var(--gray-950), var(--green-950));
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading--center {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--gray-600);
}

.section-heading--light h2 {
  color: var(--white);
}

.text-link {
  color: var(--green-700);
  font-weight: 800;
}

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

.channel-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), #0d9488);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.channel-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow);
}

.channel-card__icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  font-weight: 900;
}

.channel-card strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
}

.channel-card em {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-style: normal;
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-card__poster {
  position: relative;
  display: block;
  height: 270px;
  overflow: hidden;
  background: var(--green-900);
}

.movie-card--compact {
  display: grid;
  grid-template-columns: 122px 1fr;
  min-height: 142px;
}

.movie-card--compact .movie-card__poster {
  height: 100%;
}

.movie-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.movie-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--white);
  background: rgba(5, 150, 105, 0.92);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.movie-card__body {
  padding: 18px;
}

.movie-card__meta {
  margin: 0 0 6px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 19px;
  line-height: 1.25;
}

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

.movie-card__body > p:not(.movie-card__meta) {
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 46px;
}

.rank-panel {
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.rank-list {
  display: grid;
  gap: 6px;
}

.rank-list--page {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 13px 8px;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.18s ease, color 0.18s ease;
}

.rank-item:last-child {
  border-bottom: 0;
}

.rank-item:hover {
  color: var(--green-700);
  background: #f0faf4;
}

.rank-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-300));
  border-radius: 50%;
  font-weight: 900;
}

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

.rank-meta {
  color: var(--gray-500);
  font-size: 13px;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(253, 224, 71, 0.2), transparent 28%),
    linear-gradient(135deg, var(--green-800), var(--green-600), #0f766e);
  padding: 82px 0;
}

.page-hero--compact {
  padding: 62px 0;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

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

.category-overview-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.category-overview-card > a {
  display: block;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), #0d9488);
}

.category-overview-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 18px 0 8px;
}

.category-overview-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.category-overview-card ul {
  list-style: none;
  margin: 0;
  padding: 18px 26px 24px;
}

.category-overview-card li + li {
  margin-top: 8px;
}

.category-overview-card li a:hover {
  color: var(--green-700);
}

.filter-panel {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select,
.search-page-form input {
  min-height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0 16px;
  outline: 0;
  background: var(--white);
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-page-form input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.filter-panel input {
  flex: 1;
}

.empty-message {
  display: none;
  margin: 28px 0 0;
  padding: 24px;
  color: var(--gray-600);
  background: var(--white);
  border-radius: 18px;
  text-align: center;
}

.empty-message.is-visible {
  display: block;
}

.rank-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.rank-feature a {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rank-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rank-feature a:hover img {
  transform: scale(1.06);
}

.rank-feature a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(5, 46, 26, 0.82));
}

.rank-feature div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.rank-feature h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.rank-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.rank-feature__number {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-950);
  background: var(--yellow-300);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
}

.search-page-form {
  display: flex;
  gap: 12px;
  max-width: 720px;
  margin-top: 26px;
}

.search-page-form input {
  flex: 1;
}

.search-fallback.is-hidden {
  display: none;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-950);
}

.detail-hero__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  filter: blur(6px);
  transform: scale(1.04);
}

.detail-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 46, 26, 0.95), rgba(5, 46, 26, 0.68));
}

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

.detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 520px;
  padding: 62px 0;
}

.detail-poster {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
}

.detail-poster img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
}

.detail-line {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span,
.detail-meta a {
  display: inline-flex;
  padding: 7px 12px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.92);
}

.player-section {
  padding-top: 64px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--white);
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(5, 46, 26, 0.72));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-layer__icon {
  display: inline-grid;
  width: 82px;
  height: 82px;
  place-items: center;
  padding-left: 6px;
  color: var(--green-700);
  background: var(--white);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.play-layer strong {
  font-size: 20px;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
}

.detail-article,
.detail-side {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: 26px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 17px;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

.detail-side dl {
  margin: 0;
}

.detail-side div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.detail-side dt {
  color: var(--gray-500);
}

.detail-side dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 750;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, var(--gray-900), var(--gray-950));
  padding: 54px 0 34px;
}

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

.site-footer__brand {
  max-width: 820px;
}

.site-footer__brand p {
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.footer-links a:hover {
  color: var(--emerald-400);
}

.footer-copy {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1060px) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-search {
    order: 4;
    width: 100%;
  }

  .site-search input {
    width: 100%;
    flex: 1;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
    padding: 46px 0 70px;
  }

  .hero-slide__image {
    order: 1;
    min-height: 280px;
  }

  .hero-slide__image img {
    height: 280px;
  }

  .hero-slide__content {
    order: 2;
  }

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

  .two-column,
  .detail-layout,
  .detail-hero__inner {
    grid-template-columns: 1fr;
  }

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

  .rank-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 52px 0;
  }

  .hero,
  .hero-slider {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p,
  .page-hero p:not(.eyebrow),
  .detail-line {
    font-size: 16px;
  }

  .hero-actions,
  .search-page-form,
  .filter-panel,
  .section-heading--split {
    flex-direction: column;
    align-items: stretch;
  }

  .channel-grid,
  .movie-grid,
  .movie-grid--related,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .movie-card--compact {
    grid-template-columns: 108px 1fr;
  }

  .movie-card__poster {
    height: 240px;
  }

  .rank-item {
    grid-template-columns: 38px 1fr;
  }

  .rank-meta {
    grid-column: 2;
  }

  .detail-hero__inner {
    min-height: auto;
    padding: 48px 0;
  }

  .detail-poster img {
    height: 360px;
  }

  .detail-article,
  .detail-side {
    padding: 24px;
  }
}
