:root {
  --red-950: #450a0a;
  --red-900: #7f1d1d;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-100: #fef3c7;
  --amber-50: #fffbeb;
  --green-700: #15803d;
  --green-100: #dcfce7;
  --blue-700: #1d4ed8;
  --blue-100: #dbeafe;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--amber-50) 0%, #ffffff 38%, #fff7ed 100%);
  min-height: 100vh;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #7f1d1d, #d97706);
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #fffbeb 0%, #fff1f2 52%, #fffbeb 100%);
  border-bottom: 4px solid var(--red-900);
  box-shadow: 0 10px 26px rgba(127, 29, 29, 0.13);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-800), var(--amber-700));
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.26);
}

.brand-mark.small {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 18px;
}

.brand-text strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--red-900), var(--amber-800));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  display: block;
  color: var(--gray-600);
  margin-top: 3px;
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 650;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red-900);
  background: rgba(254, 226, 226, 0.9);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(254, 226, 226, 0.9);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--red-900);
  border-radius: 999px;
}

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

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gray-700);
  font-weight: 650;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: linear-gradient(120deg, var(--red-950), var(--red-800) 45%, var(--amber-900));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.14) 50px, rgba(255, 255, 255, 0.14) 51px);
  background-size: 100% 51px;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  padding: 72px 0 86px;
}

.hero-slide::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(69, 10, 10, 0.94) 0%, rgba(127, 29, 29, 0.82) 50%, rgba(120, 53, 15, 0.78) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.08);
  transform: scale(1.04);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fee2e2;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.hero-main-title {
  display: block;
  margin: 20px 0 10px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-main-title.secondary {
  color: #fee2e2;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0.04em;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  color: #fee2e2;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.hero-tags span,
.detail-tags span:not(.badge) {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff7ed;
  font-weight: 650;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.btn.primary {
  color: white;
  background: linear-gradient(90deg, var(--red-600), var(--amber-600));
  box-shadow: 0 12px 24px rgba(185, 28, 28, 0.28);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.10);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.16);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  box-shadow: inset 0 -80px 100px rgba(0, 0, 0, 0.22);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

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

.hero-dot.is-active {
  width: 54px;
  background: white;
}

.home-search-wrap {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

.home-search,
.inline-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.home-search label {
  font-weight: 900;
  color: var(--red-900);
  min-width: max-content;
}

.home-search input,
.inline-filter input {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  min-height: 48px;
  padding: 0 16px;
  outline: none;
  color: var(--gray-900);
}

.home-search input:focus,
.inline-filter input:focus {
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.10);
}

.home-search button,
.inline-filter button {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  color: white;
  font-weight: 800;
  background: linear-gradient(90deg, var(--red-700), var(--amber-600));
  cursor: pointer;
}

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

.soft-section {
  background: linear-gradient(90deg, #fff1f2, #fffbeb);
}

.pale-section {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

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

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

.section-heading p {
  margin: 7px 0 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-heading > span {
  height: 4px;
  flex: 1;
  min-width: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-600), transparent);
}

.section-heading.amber > span {
  background: linear-gradient(90deg, var(--amber-600), transparent);
}

.section-heading.green > span {
  background: linear-gradient(90deg, var(--green-700), transparent);
}

.section-heading.blue > span {
  background: linear-gradient(90deg, var(--blue-700), transparent);
}

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

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

.poster-card {
  min-width: 0;
}

.poster-link {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: var(--soft-shadow);
  transition: all 0.3s ease;
}

.poster-link:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.20);
}

.poster-img {
  position: absolute;
  inset: 0;
}

.poster-link:hover img,
.related-item:hover img,
.wide-card:hover img,
.rank-card:hover img {
  transform: scale(1.08);
}

.poster-img img,
.related-item img,
.wide-card img,
.rank-card img {
  transition: transform 0.42s ease;
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.86) 100%);
}

.poster-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 20px;
  color: white;
}

.poster-info strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 21px;
  line-height: 1.25;
}

.poster-info em {
  display: -webkit-box;
  overflow: hidden;
  color: #e5e7eb;
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: white;
  background: var(--red-600);
  font-size: 12px;
  font-weight: 800;
}

.badge.blue {
  color: var(--blue-700);
  background: var(--blue-100);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  color: #d1d5db;
  font-size: 12px;
}

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

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

.rank-card {
  display: flex;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 20px;
  background: white;
  box-shadow: var(--soft-shadow);
  transition: all 0.25s ease;
}

.rank-card:hover {
  border-color: #fecaca;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.rank-poster {
  position: relative;
  width: 128px;
  min-height: 158px;
  flex: 0 0 128px;
  overflow: hidden;
}

.rank-number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--red-600);
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.rank-body {
  padding: 18px;
  min-width: 0;
}

.card-title,
.rank-body .card-title {
  display: block;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.card-title:hover,
.wide-body h2 a:hover {
  color: var(--red-700);
}

.rank-body p,
.wide-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  color: var(--gray-600);
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-body .card-meta,
.wide-body .card-meta {
  color: var(--gray-500);
}

.center-actions {
  justify-content: center;
  margin-top: 28px;
}

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

.wide-card {
  display: flex;
  overflow: hidden;
  border-radius: 22px;
  background: white;
  box-shadow: var(--soft-shadow);
  transition: all 0.25s ease;
}

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

.wide-cover {
  width: 190px;
  flex: 0 0 190px;
  min-height: 210px;
  overflow: hidden;
}

.wide-body {
  padding: 22px;
  min-width: 0;
}

.wide-body h2 {
  margin: 13px 0 0;
  font-size: 23px;
  line-height: 1.3;
}

.channel-panel {
  padding: 48px;
  border-radius: 34px;
  color: white;
  text-align: center;
  background: linear-gradient(90deg, var(--red-900), var(--amber-800));
  box-shadow: var(--shadow);
}

.channel-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 45px);
}

.channel-panel p {
  margin: 0 auto 28px;
  max-width: 780px;
  color: #fee2e2;
  line-height: 1.8;
  font-size: 18px;
}

.channel-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.channel-links {
  justify-content: center;
}

.channel-links a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--red-900);
  background: white;
  font-weight: 900;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.14);
}

.page-hero {
  color: white;
  background: linear-gradient(120deg, var(--red-900), var(--red-800) 54%, var(--amber-900));
  padding: 76px 0;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 45%;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  filter: blur(2px);
}

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

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

.page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.category-page .inline-filter {
  margin-top: 26px;
  max-width: 760px;
}

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

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

.category-main {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
  color: white;
  background: linear-gradient(135deg, var(--red-800), var(--amber-700));
}

.category-main span {
  font-size: 26px;
  font-weight: 900;
}

.category-main strong {
  color: #fee2e2;
  line-height: 1.7;
}

.category-samples {
  display: grid;
  gap: 10px;
  padding: 18px 20px 22px;
}

.category-samples a {
  color: var(--gray-700);
  font-weight: 700;
  line-height: 1.35;
}

.category-samples a:hover {
  color: var(--red-700);
}

.detail-wrap {
  padding: 34px 0 76px;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--gray-600);
  font-weight: 650;
  margin-bottom: 22px;
}

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

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

.player-card,
.detail-content,
.side-card {
  overflow: hidden;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
}

.player-card {
  margin-bottom: 26px;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.54));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-play {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--red-600), var(--amber-600));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.30);
  font-size: 34px;
}

.detail-content {
  padding: 34px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.detail-tags span:not(.badge) {
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 13px;
}

.detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 28px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}

.detail-content section {
  margin-top: 28px;
}

.detail-content h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 25px;
}

.detail-content p {
  margin: 0;
  color: var(--gray-700);
  line-height: 2;
  text-align: justify;
}

.lead-text {
  color: var(--red-900) !important;
  font-size: 20px;
  font-weight: 800;
}

.review-box {
  padding: 24px;
  border-left: 5px solid var(--red-600);
  border-radius: 18px;
  background: linear-gradient(90deg, #fffbeb, #fff1f2);
}

.side-card {
  position: sticky;
  top: 102px;
  padding: 24px;
}

.related-list {
  display: grid;
  gap: 14px;
}

.related-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 13px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.related-item:hover {
  background: var(--gray-100);
}

.related-item span {
  grid-row: span 2;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-900);
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-item em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
}

.side-more {
  display: block;
  margin-top: 20px;
  padding: 14px;
  border-radius: 14px;
  color: white;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(90deg, var(--red-700), var(--amber-600));
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
  border-top: 4px solid var(--red-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 14px;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-links a {
  color: #d1d5db;
  padding: 6px 0;
}

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

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

.search-page-form {
  margin-top: 26px;
  max-width: 760px;
}

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

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

  .menu-toggle {
    display: inline-block;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 52px;
  }

  .hero-poster {
    max-width: 330px;
    margin: 0 auto;
  }

  .featured-grid,
  .rank-grid,
  .rank-list,
  .wide-grid,
  .category-grid,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-side,
  .side-card {
    position: static;
  }
}

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

  .brand-text strong {
    font-size: 21px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  .hero-copy h2,
  .page-hero h1 {
    letter-spacing: 0;
  }

  .home-search,
  .inline-filter {
    display: grid;
  }

  .section-heading {
    display: block;
  }

  .section-heading > span {
    display: block;
    margin-top: 16px;
  }

  .card-grid.compact,
  .card-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .rank-card,
  .wide-card {
    display: block;
  }

  .rank-poster,
  .wide-cover {
    width: 100%;
    min-height: 220px;
  }

  .channel-panel,
  .detail-content {
    padding: 26px 18px;
  }

  .player-play {
    width: 68px;
    height: 68px;
    font-size: 27px;
  }
}
