:root {
  color-scheme: dark;
  --bg: #030712;
  --panel: #111827;
  --panel-soft: rgba(31, 41, 55, 0.72);
  --panel-strong: rgba(17, 24, 39, 0.96);
  --line: rgba(255, 255, 255, 0.10);
  --text: #ffffff;
  --muted: #d1d5db;
  --muted-2: #9ca3af;
  --amber: #fbbf24;
  --amber-2: #f59e0b;
  --red: #ef4444;
  --blue: #3b82f6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.10), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--amber), #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--amber);
  background: rgba(251, 191, 36, 0.15);
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.30);
  transition: transform 0.5s ease;
}

.logo:hover .logo-mark {
  transform: rotate(180deg) scale(1.06);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 16px 16px;
  background: rgba(0, 0, 0, 0.94);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--amber);
  background: rgba(251, 191, 36, 0.12);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #050816;
}

.hero-bg-glow {
  position: absolute;
  inset: auto -120px -220px -120px;
  height: 360px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.22), transparent 68%);
  pointer-events: none;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 48px;
  width: 100%;
  padding: 88px max(32px, calc((100vw - 1200px) / 2)) 120px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1,
.sub-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero p,
.sub-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-tags {
  margin-top: 26px;
}

.hero-tags span,
.tag-list span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #fef3c7;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

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

.btn-primary,
.btn-ghost,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  min-height: 52px;
  padding: 0 24px;
  color: #111827;
  background: var(--amber);
  box-shadow: 0 16px 36px rgba(251, 191, 36, 0.25);
}

.btn-primary:hover {
  background: var(--amber-2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 44px rgba(251, 191, 36, 0.34);
}

.btn-ghost {
  min-height: 52px;
  padding: 0 22px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(340px, 100%);
  aspect-ratio: 2 / 3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(2deg);
}

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

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: var(--amber);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  font-size: 26px;
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -86px;
  padding-bottom: 30px;
}

.hero-dots {
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 38px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

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

.hero-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-quick a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.hero-quick a:hover {
  color: var(--amber);
}

.hero-rail {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -6px;
}

.compact-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.42);
}

.compact-card img {
  width: 76px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
}

.compact-card strong,
.compact-card em {
  display: block;
}

.compact-card strong {
  font-size: 16px;
}

.compact-card em {
  margin-top: 6px;
  color: var(--muted-2);
  font-style: normal;
  font-size: 13px;
}

.page-section,
.search-section {
  padding: 70px 0 0;
}

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

.section-title div {
  min-width: 0;
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--amber);
  background: rgba(251, 191, 36, 0.12);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.section-link {
  color: var(--amber);
  white-space: nowrap;
}

.section-link:hover {
  color: #fde68a;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
}

.search-box span {
  color: var(--amber);
  font-size: 24px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-row select {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.30);
  border: 1px solid var(--line);
  outline: 0;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-soft);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.38);
  box-shadow: 0 24px 70px rgba(251, 191, 36, 0.10);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

.movie-card.horizontal {
  display: grid;
  grid-template-columns: 132px 1fr;
}

.movie-card.horizontal .poster-wrap {
  aspect-ratio: auto;
  min-height: 190px;
}

.movie-card.minimal .card-content p,
.movie-card.minimal .tag-list {
  display: none;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.74));
}

.play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: var(--amber);
  opacity: 0;
  transform: translateY(8px) scale(0.94);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rating-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #111827;
  background: var(--amber);
  font-weight: 900;
  font-size: 13px;
}

.card-content {
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-size: 13px;
}

.movie-card h2 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.movie-card h2 a:hover {
  color: var(--amber);
}

.movie-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.tag-list span {
  min-height: 26px;
  padding: 3px 9px;
  font-size: 12px;
}

.channel-section,
.soft-panel {
  position: relative;
}

.soft-panel {
  margin-top: 72px;
  padding: 46px 28px 32px;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(31, 41, 55, 0.72), rgba(17, 24, 39, 0.28));
  border: 1px solid var(--line);
}

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

.channel-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #111827;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.channel-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.channel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.86));
}

.channel-card strong,
.channel-card em {
  position: absolute;
  left: 18px;
  right: 18px;
}

.channel-card strong {
  bottom: 54px;
  font-size: 22px;
}

.channel-card em {
  bottom: 18px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.sub-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 340px;
  padding: 76px 0 36px;
}

.sub-hero h1 {
  font-size: clamp(42px, 5vw, 70px);
}

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

.category-overview-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.38);
}

.category-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 190px;
}

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

.category-copy {
  padding: 22px;
}

.category-copy span {
  color: var(--amber);
  font-weight: 800;
}

.category-copy h2 {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.category-copy p {
  margin: 0;
  color: var(--muted);
}

.rank-top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.rank-hero-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.rank-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.rank-top-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #111827;
  background: var(--amber);
  font-weight: 900;
}

.rank-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
}

.rank-hero-copy strong,
.rank-hero-copy em {
  display: block;
}

.rank-hero-copy strong {
  font-size: 34px;
  line-height: 1.1;
}

.rank-hero-copy em {
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 64px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: rgba(251, 191, 36, 0.40);
}

.rank-number {
  color: var(--amber);
  font-size: 22px;
  font-weight: 900;
}

.rank-row img {
  width: 64px;
  height: 86px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-copy strong,
.rank-copy em {
  display: block;
}

.rank-copy strong {
  font-size: 18px;
}

.rank-copy em {
  margin-top: 5px;
  color: var(--muted-2);
  font-style: normal;
  font-size: 13px;
}

.rank-score {
  color: var(--amber);
  font-weight: 900;
}

.detail-hero {
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.detail-hero-inner {
  padding: 36px 0 60px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
  margin-bottom: 34px;
  font-size: 14px;
}

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

.breadcrumb strong {
  color: var(--muted);
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
}

.detail-poster {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

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

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

.detail-tags {
  margin-top: 18px;
}

.jump-player {
  margin-top: 28px;
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000000;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.player-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  color: #111827;
  background: var(--amber);
  transform: translate(-50%, -50%);
  font-size: 34px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

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

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

.content-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(17, 24, 39, 0.80);
  border: 1px solid var(--line);
}

.content-card h2 {
  margin: 0 0 14px;
  color: var(--amber);
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  margin-top: 84px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.42);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  padding: 46px 0;
}

.footer-logo {
  margin-bottom: 14px;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted-2);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted-2);
}

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

.footer-bottom {
  padding: 18px 16px 26px;
  text-align: center;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}

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

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

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

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

  .menu-toggle {
    display: block;
  }

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

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

  .hero-poster {
    justify-self: start;
    width: 240px;
  }

  .hero-bottom {
    display: grid;
    gap: 16px;
    margin-top: -120px;
  }

  .hero-rail,
  .filter-panel,
  .detail-grid,
  .detail-content,
  .footer-grid,
  .rank-top,
  .rank-side-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero {
    display: grid;
    align-items: end;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .logo {
    font-size: 20px;
  }

  .hero h1,
  .sub-hero h1,
  .detail-copy h1 {
    font-size: 42px;
  }

  .hero p,
  .sub-hero p,
  .detail-copy p {
    font-size: 16px;
  }

  .card-grid,
  .catalog-grid,
  .compact-grid,
  .featured-grid,
  .channel-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .filter-row,
  .hero-actions,
  .hero-quick {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-row select {
    width: 100%;
  }

  .movie-card.horizontal {
    grid-template-columns: 110px 1fr;
  }

  .rank-row {
    grid-template-columns: 42px 56px 1fr;
  }

  .rank-score {
    grid-column: 3;
  }

  .player-cover span {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }
}
