:root {
  --earth-950: #17120d;
  --earth-900: #241a12;
  --earth-850: #2d2117;
  --earth-800: #3b2a1d;
  --earth-700: #5b4030;
  --earth-600: #73513b;
  --bronze-700: #8a5225;
  --bronze-600: #b56b2c;
  --bronze-500: #d58a3d;
  --bronze-300: #f0c48d;
  --bronze-100: #fff0dc;
  --stone-50: #fbfaf8;
  --stone-100: #f4f1ec;
  --stone-200: #e7ded2;
  --stone-500: #8a7b6a;
  --stone-600: #6d5f51;
  --stone-700: #4e4338;
  --white: #ffffff;
  --shadow-soft: 0 20px 50px rgba(38, 25, 12, 0.14);
  --shadow-card: 0 12px 30px rgba(43, 30, 18, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  color: var(--earth-900);
  background: var(--stone-50);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 30, 20, 0.95);
  color: var(--stone-50);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--earth-900);
  background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
  box-shadow: 0 12px 25px rgba(213, 138, 61, 0.35);
}

.brand-text {
  font-size: 26px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--stone-200);
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--bronze-300);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--stone-50);
}

.hero,
.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 18% 22%, rgba(240, 196, 141, 0.28), transparent 32%), linear-gradient(135deg, var(--earth-900), var(--earth-700) 52%, var(--bronze-700));
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 74px 0 44px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 80px;
  background: rgba(213, 138, 61, 0.32);
}

.hero-glow-two {
  width: 250px;
  height: 250px;
  left: -80px;
  bottom: 40px;
  background: rgba(255, 240, 220, 0.14);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-slides {
  min-height: 500px;
  position: relative;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  align-items: center;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
}

.hero-kicker,
.page-hero p:first-child,
.section-heading p,
.category-card-large > div > p:first-child {
  color: var(--bronze-300);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  color: var(--bronze-100);
}

.hero p:not(.hero-kicker) {
  margin: 0;
  max-width: 720px;
  color: var(--stone-200);
  font-size: 20px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-button {
  padding: 14px 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--bronze-500), var(--bronze-600));
  box-shadow: 0 14px 30px rgba(213, 138, 61, 0.32);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(213, 138, 61, 0.4);
}

.ghost-button {
  padding: 13px 24px;
  color: var(--bronze-100);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--earth-800), var(--bronze-700));
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--earth-900);
  background: var(--bronze-300);
  font-weight: 800;
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.hero-dots,
.hero-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-dot.is-active {
  background: var(--bronze-300);
}

.hero-categories a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--stone-50);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--earth-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--bronze-700);
  font-weight: 800;
}

.compact-heading {
  margin-bottom: 18px;
}

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

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

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

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

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

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(43, 30, 18, 0.18);
}

.movie-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-800), var(--bronze-700));
}

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

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

.rank-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-900);
  background: var(--bronze-300);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
}

.movie-card h2 {
  margin: 0;
  color: var(--earth-900);
  font-size: 20px;
  line-height: 1.28;
}

.movie-meta {
  margin: 0;
  color: var(--stone-500);
  font-size: 14px;
}

.movie-line {
  margin: 0;
  color: var(--stone-700);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag-list span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--bronze-700);
  background: var(--bronze-100);
  font-size: 12px;
  font-weight: 800;
}

.muted-section {
  background: var(--stone-100);
}

.warm-section {
  background: linear-gradient(135deg, var(--bronze-100), var(--stone-100));
}

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

.category-tile {
  min-height: 190px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
}

.category-tile span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--bronze-700);
  font-weight: 900;
}

.category-tile strong {
  display: block;
  min-height: 46px;
  color: var(--earth-900);
  line-height: 1.45;
}

.category-tile p {
  color: var(--stone-600);
  line-height: 1.7;
}

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

.ranking-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--earth-900);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.ranking-panel .section-heading h2,
.ranking-panel .section-heading p {
  color: var(--bronze-300);
}

.ranking-row {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 5px 12px;
  align-items: center;
  padding: 11px;
  border-radius: 16px;
  transition: 0.22s ease;
}

.ranking-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ranking-number {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--earth-900);
  background: var(--bronze-300);
  font-weight: 900;
}

.ranking-row img {
  grid-row: 1 / 3;
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--earth-700), var(--bronze-700));
}

.ranking-title {
  min-width: 0;
  color: var(--white);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-info {
  color: var(--stone-200);
  font-size: 13px;
}

.ranking-list {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--earth-900);
  box-shadow: var(--shadow-soft);
}

.ranking-list .ranking-row {
  grid-template-columns: 54px 72px minmax(0, 1fr) auto;
  grid-template-rows: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ranking-list .ranking-row:last-child {
  border-bottom: 0;
}

.ranking-list .ranking-row img,
.ranking-list .ranking-number {
  grid-row: auto;
}

.ranking-list .ranking-info {
  justify-self: end;
}

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

.wide-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.wide-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--earth-700), var(--bronze-700));
}

.wide-card div {
  padding: 24px 22px 24px 0;
}

.wide-card span {
  color: var(--bronze-700);
  font-weight: 900;
}

.wide-card h2 {
  margin: 8px 0 12px;
  font-size: 26px;
}

.wide-card p {
  color: var(--stone-700);
  line-height: 1.8;
}

.filter-panel {
  margin-bottom: 26px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.search-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.search-box span {
  color: var(--bronze-700);
  font-weight: 900;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  color: var(--earth-900);
  background: var(--stone-50);
}

.search-box input:focus {
  border-color: var(--bronze-500);
  box-shadow: 0 0 0 4px rgba(213, 138, 61, 0.16);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip {
  border: 0;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--earth-800);
  background: var(--stone-100);
  cursor: pointer;
  font-weight: 800;
}

.chip.is-active,
.chip:hover {
  color: var(--white);
  background: var(--earth-800);
}

.empty-state {
  margin: 16px 0 0;
  color: var(--stone-600);
}

.page-hero {
  padding: 96px 0 82px;
}

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

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.05em;
}

.page-hero h2,
.page-hero p:not(:first-child) {
  max-width: 860px;
  color: var(--stone-200);
  line-height: 1.75;
}

.page-hero h2 {
  font-size: 24px;
  font-weight: 500;
}

.page-hero-links {
  margin-top: 24px;
}

.category-large-grid {
  display: grid;
  gap: 26px;
}

.category-card-large {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-cover {
  overflow: hidden;
  border-radius: 20px;
  min-height: 250px;
  background: linear-gradient(135deg, var(--earth-700), var(--bronze-700));
}

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

.category-card-large h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.category-card-large p {
  color: var(--stone-700);
  line-height: 1.8;
}

.category-card-large ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.category-card-large li a {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--bronze-700);
  background: var(--bronze-100);
  font-weight: 800;
}

.text-button {
  color: var(--bronze-700);
}

.detail-hero {
  padding: 70px 0;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, var(--earth-700), var(--bronze-700));
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.breadcrumb {
  color: var(--bronze-300);
  font-weight: 800;
}

.detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-copy h2 {
  margin: 0 0 22px;
  color: var(--stone-200);
  line-height: 1.7;
  font-weight: 500;
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--stone-50);
  background: rgba(255, 255, 255, 0.12);
}

.detail-tags {
  margin-bottom: 28px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56));
  cursor: pointer;
}

.player-start span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 5px;
  color: var(--earth-900);
  background: var(--bronze-300);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  font-size: 36px;
}

.player-start strong {
  font-size: 22px;
}

.player-shell.is-playing {
  cursor: default;
}

.player-shell.is-playing .player-start {
  display: none;
}

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

.content-card,
.content-side {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.content-card h2,
.content-side h2 {
  margin: 0 0 16px;
  color: var(--earth-900);
  font-size: 28px;
}

.content-card p {
  color: var(--stone-700);
  line-height: 2;
  font-size: 17px;
}

.content-side dl {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0;
}

.content-side dt {
  color: var(--bronze-700);
  font-weight: 900;
}

.content-side dd {
  margin: 0;
  color: var(--stone-700);
}

.site-footer {
  color: var(--stone-200);
  background: var(--earth-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0 38px;
}

.footer-brand {
  color: var(--bronze-300);
  font-size: 24px;
}

.site-footer p {
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--bronze-300);
  font-size: 20px;
}

.footer-links {
  columns: 2;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.footer-links a:hover {
  color: var(--bronze-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 16px;
  text-align: center;
  color: var(--stone-200);
}

[hidden],
.is-hidden {
  display: none !important;
}

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

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

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 440px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 18px;
  }

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

  .nav-link {
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 36px;
  }

  .hero-slides {
    min-height: auto;
  }

  .hero-slide,
  .detail-hero-grid,
  .detail-content,
  .split-section,
  .category-card-large,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    gap: 28px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 360px;
  }

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

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

  .wide-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .wide-card div {
    padding: 18px 16px 18px 0;
  }

  .ranking-panel {
    position: static;
  }

  .ranking-list .ranking-row {
    grid-template-columns: 42px 58px minmax(0, 1fr);
  }

  .ranking-list .ranking-info {
    justify-self: start;
    grid-column: 3;
  }
}

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

  .brand-text {
    font-size: 22px;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-movie-grid,
  .category-grid,
  .wide-list {
    grid-template-columns: 1fr;
  }

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

  .hero p:not(.hero-kicker) {
    font-size: 17px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 330px;
  }

  .section {
    padding: 52px 0;
  }

  .wide-card {
    grid-template-columns: 1fr;
  }

  .wide-card div {
    padding: 20px;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .content-card,
  .content-side {
    padding: 22px;
  }

  .player-start span {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}
