:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --white: #ffffff;
  --shadow-sm: 0 10px 25px rgba(28, 25, 23, 0.08);
  --shadow-md: 0 18px 45px rgba(28, 25, 23, 0.14);
  --shadow-lg: 0 30px 80px rgba(28, 25, 23, 0.22);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--amber-50), var(--stone-50) 38%, #fff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(250, 250, 249, 0.96), rgba(255, 251, 235, 0.94));
  border-bottom: 1px solid rgba(214, 211, 209, 0.72);
  box-shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(var(--max-width), calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--stone-700));
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand__mark {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 38px rgba(180, 83, 9, 0.38);
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-size: 20px;
  line-height: 1.15;
  color: var(--stone-800);
}

.brand__text em {
  font-style: normal;
  font-size: 12px;
  color: var(--stone-600);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  color: var(--stone-700);
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--amber-600);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--stone-700);
  background: var(--amber-100);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--stone-700);
  font-weight: 600;
}

.mobile-nav a:hover {
  color: var(--amber-700);
  background: var(--amber-50);
}

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

.hero-slider {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  background: var(--stone-900);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.55) 45%, rgba(28, 25, 23, 0.24)),
    linear-gradient(0deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.1) 55%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, transform 1.2s ease;
  transform: scale(1.02);
}

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

.hero-slide__content {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 124px;
  color: var(--white);
}

.hero-badges,
.detail-meta,
.tag-row,
.tag-cloud,
.chip-nav,
.side-chip-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.detail-meta span,
.tag-row span,
.tag-cloud span,
.chip-nav a,
.side-chip-list a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--stone-700);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(28, 25, 23, 0.08);
}

.hero-badges span:first-child {
  color: var(--white);
  background: var(--amber-500);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide h1,
.hero-slide h2 {
  margin: 12px 0 0;
  max-width: 820px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-slide h2 {
  margin-top: 8px;
}

.hero-slide p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
}

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

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

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.28);
}

.button--primary:hover {
  background: var(--amber-600);
  box-shadow: 0 22px 42px rgba(217, 119, 6, 0.32);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button--ghost-dark {
  color: var(--stone-800);
  border: 1px solid var(--stone-200);
  background: var(--white);
}

.hero-panel {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 30px;
  width: min(var(--max-width), calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.hero-dots {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

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

.hero-dot.is-active {
  background: var(--amber-500);
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  width: min(520px, 50vw);
  pointer-events: auto;
}

.hero-rail a {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  border-radius: 18px;
  background: var(--stone-900);
  box-shadow: var(--shadow-md);
}

.hero-rail img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.hero-rail span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-rail a:hover img {
  transform: scale(1.08);
  opacity: 0.95;
}

.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.section--lift {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

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

.section-heading h2,
.section-heading h1,
.page-hero h1,
.detail-hero h1,
.detail-article h2,
.player-card h2,
.detail-sidebar h2 {
  margin: 0;
  color: var(--stone-800);
  line-height: 1.18;
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--stone-600);
}

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

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

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

.category-tile {
  min-height: 138px;
  padding: 22px;
  border: 1px solid rgba(231, 229, 228, 0.78);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 235, 0.9));
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.category-tile span {
  color: var(--stone-600);
  font-size: 14px;
}

.category-tile:hover,
.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.56);
  box-shadow: var(--shadow-md);
}

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

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

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

.movie-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card__poster {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--stone-200), var(--amber-100));
  box-shadow: 0 10px 24px rgba(28, 25, 23, 0.12);
}

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

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

.movie-card__poster em {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(245, 158, 11, 0.92);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.movie-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--stone-800);
  font-size: 16px;
}

.movie-card small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--stone-500);
  font-size: 12px;
}

.movie-card p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0;
  overflow: hidden;
  color: var(--stone-600);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  padding: 3px 8px;
  background: var(--amber-50);
  color: var(--amber-700);
  font-size: 11px;
  box-shadow: none;
}

.inline-search input,
.filter-bar input,
.filter-bar select,
.search-console input,
.search-console select {
  height: 44px;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--stone-800);
  outline: none;
  box-shadow: var(--shadow-sm);
}

.inline-search input {
  width: min(280px, 50vw);
  padding: 0 16px;
}

.filter-bar,
.search-console {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 160px 160px 160px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.filter-bar input,
.search-console input {
  padding: 0 16px;
}

.filter-bar select,
.search-console select {
  padding: 0 12px;
}

.empty-state,
.search-status {
  display: none;
  margin: 18px 0 0;
  color: var(--stone-600);
  font-weight: 700;
}

.search-status {
  display: block;
  margin-bottom: 20px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(245, 158, 11, 0.5);
}

.rank-num {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-item strong,
.rank-item em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-item em {
  margin-top: 3px;
  color: var(--stone-500);
  font-style: normal;
  font-size: 13px;
}

.rank-item b {
  color: var(--amber-700);
}

.spotlight-card,
.ranking-aside,
.detail-sidebar section,
.player-card,
.detail-article,
.side-card {
  overflow: hidden;
  border: 1px solid rgba(231, 229, 228, 0.78);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.spotlight-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.spotlight-card div,
.ranking-aside,
.detail-sidebar section,
.detail-article,
.player-card {
  padding: 24px;
}

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

.spotlight-card h2 {
  margin: 8px 0;
}

.spotlight-card p,
.ranking-aside p,
.detail-article p,
.side-card p {
  color: var(--stone-600);
}

.page-hero {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 34px auto 0;
  min-height: 320px;
  display: grid;
  align-items: end;
  gap: 22px;
  padding: 44px;
  border-radius: 34px;
  color: var(--white);
  background-image:
    linear-gradient(110deg, rgba(28, 25, 23, 0.86), rgba(28, 25, 23, 0.52), rgba(28, 25, 23, 0.16)),
    var(--page-image, linear-gradient(135deg, #292524, #d97706));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.page-hero--compact {
  min-height: 260px;
  background-image: radial-gradient(circle at top right, rgba(245, 158, 11, 0.32), transparent 34%), linear-gradient(135deg, #292524, #44403c 58%, #b45309);
}

.page-hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.page-hero .eyebrow {
  color: var(--amber-300);
}

.page-hero .chip-nav a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.category-list {
  display: grid;
  gap: 30px;
}

.category-block {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--stone-200);
}

.detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 34px auto 0;
  padding: 42px;
  overflow: hidden;
  border-radius: 34px;
  background-image:
    linear-gradient(90deg, rgba(28, 25, 23, 0.96), rgba(28, 25, 23, 0.72), rgba(28, 25, 23, 0.24)),
    var(--detail-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.detail-hero__poster {
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

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

.detail-hero__content {
  align-self: end;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.detail-hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.detail-hero p {
  max-width: 760px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.detail-meta {
  margin-bottom: 24px;
}

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.watch-main {
  display: grid;
  gap: 24px;
}

.player-card h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.player-stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-lg);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  z-index: 3;
}

.play-overlay.is-visible {
  display: flex;
}

.play-overlay.is-hidden {
  display: none;
  pointer-events: none;
}

.play-symbol {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 24px 60px rgba(245, 158, 11, 0.38);
  font-size: 30px;
}

.play-overlay strong {
  font-size: 18px;
}

.detail-article {
  display: grid;
  gap: 14px;
}

.detail-article h2 {
  margin-top: 8px;
  font-size: 24px;
}

.detail-article p {
  margin: 0;
  font-size: 16px;
}

.tag-cloud span {
  color: var(--amber-700);
  background: var(--amber-50);
  box-shadow: none;
}

.detail-sidebar {
  display: grid;
  gap: 20px;
}

.rank-list--side .rank-item {
  grid-template-columns: 38px 52px minmax(0, 1fr);
}

.rank-list--side .rank-item b {
  display: none;
}

.side-chip-list {
  margin-top: 14px;
}

.side-chip-list a {
  color: var(--amber-700);
  background: var(--amber-50);
  box-shadow: none;
}

.search-console {
  grid-template-columns: minmax(280px, 1fr) 150px 180px 180px;
}

.search-console input,
.search-console select {
  box-shadow: none;
}

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

  .section--split,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    display: none;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand__text strong {
    font-size: 18px;
  }

  .hero-slide__content {
    padding-bottom: 96px;
  }

  .hero-panel {
    bottom: 22px;
  }

  .section,
  .page-hero,
  .detail-hero {
    width: min(100% - 24px, var(--max-width));
  }

  .section {
    padding: 42px 0;
  }

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

  .category-grid,
  .movie-grid,
  .movie-grid--dense,
  .movie-grid--small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .filter-bar,
  .search-console {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 28px;
    border-radius: 26px;
  }

  .detail-hero {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
  }

  .detail-hero__poster {
    border-radius: 18px;
  }

  .detail-hero h1 {
    font-size: 30px;
  }

  .detail-hero p {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    width: min(100% - 20px, var(--max-width));
    height: 62px;
  }

  .brand__text em {
    display: none;
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-slide {
    align-items: center;
  }

  .hero-slide__content {
    padding: 72px 0 92px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 36px;
  }

  .hero-slide p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .movie-card {
    padding: 8px;
  }

  .movie-card p {
    display: none;
  }

  .rank-item {
    grid-template-columns: 42px 52px minmax(0, 1fr);
  }

  .rank-item b {
    display: none;
  }

  .spotlight-card img {
    height: 230px;
  }

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

  .detail-hero__poster {
    width: 160px;
  }

  .player-card,
  .detail-article,
  .detail-sidebar section {
    padding: 18px;
  }
}
