:root {
  --primary-50: #fff1f2;
  --primary-100: #ffe4e6;
  --primary-400: #fb7185;
  --primary-500: #f43f5e;
  --primary-600: #e11d48;
  --primary-700: #be123c;
  --accent-500: #f59e0b;
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;
  --white: #ffffff;
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 25px 45px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--secondary-50);
  color: var(--secondary-900);
  font-family: Inter, -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 {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  box-shadow: 0 12px 22px rgba(244, 63, 94, 0.26);
  transform: translateZ(0);
}

.brand:hover .brand-mark {
  transform: scale(1.08);
  transition: transform 0.2s ease;
}

.brand-text,
.footer-logo span:last-child {
  display: grid;
  gap: 1px;
}

.brand-title {
  color: var(--secondary-900);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle,
.footer-logo small {
  color: var(--secondary-500);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

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

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

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--secondary-100);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--secondary-800);
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid var(--secondary-200);
}

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

.mobile-nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 650;
}

.mobile-nav-link:hover {
  background: var(--secondary-100);
  color: var(--primary-600);
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--secondary-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.hero-badge,
.page-hero span,
.detail-info .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.92);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 16px 0 4px;
  font-size: clamp(36px, 7vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--secondary-200);
  font-size: 19px;
}

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

.hero-tags span,
.tag-cloud span,
.rank-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 14px 28px rgba(244, 63, 94, 0.28);
}

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

.hero-dots {
  position: absolute;
  right: clamp(20px, 5vw, 58px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

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

.hero-dot.active {
  width: 34px;
  background: var(--primary-500);
}

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

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

.soft-section {
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-100));
}

.dark-section {
  background: var(--secondary-900);
  color: var(--white);
}

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

.section-heading h2 {
  margin: 0 0 4px;
  color: inherit;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: var(--secondary-600);
}

.dark-section .section-heading p {
  color: var(--secondary-300);
}

.section-link,
.text-link {
  color: var(--primary-600);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  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: var(--shadow-hover);
}

.movie-card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--secondary-200);
}

.movie-card-cover img,
.compact-card img,
.wide-card img,
.topic-main img,
.topic-small img,
.rank-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-card-cover img {
  transition: transform 0.45s ease;
}

.movie-card:hover .movie-card-cover img {
  transform: scale(1.1);
}

.movie-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-card-cover::after {
  opacity: 1;
}

.card-region,
.card-year {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.card-region {
  left: 12px;
  background: var(--primary-500);
}

.card-year {
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
}

.card-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-600);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
  padding: 18px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--primary-600);
}

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

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

.movie-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-snap-type: x mandatory;
}

.rail-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.wide-list {
  display: grid;
  gap: 22px;
}

.wide-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.wide-card img {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
}

.wide-card span {
  color: var(--primary-600);
  font-size: 14px;
  font-weight: 800;
}

.wide-card h3 {
  margin: 8px 0 10px;
  font-size: 26px;
}

.wide-card p {
  margin: 0 0 12px;
  color: var(--secondary-600);
}

.wide-card small {
  color: var(--secondary-500);
}

.topic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.topic-main,
.topic-small {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--secondary-800);
}

.topic-main {
  min-height: 430px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.topic-main img,
.topic-small img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.74;
  transition: transform 0.45s ease;
}

.topic-main::after,
.topic-small::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.topic-main > span,
.topic-main > strong,
.topic-main > p,
.topic-small > span,
.topic-small > strong {
  position: relative;
  z-index: 2;
}

.topic-main span,
.topic-small span {
  color: var(--primary-400);
  font-size: 14px;
  font-weight: 800;
}

.topic-main strong {
  margin: 8px 0;
  font-size: 34px;
}

.topic-main p {
  max-width: 680px;
  margin: 0;
  color: var(--secondary-200);
}

.topic-side {
  display: grid;
  gap: 24px;
}

.topic-small {
  min-height: 203px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.topic-small strong {
  font-size: 18px;
}

.topic-main:hover img,
.topic-small:hover img {
  transform: scale(1.08);
}

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

.category-tile {
  display: grid;
  gap: 10px;
  min-height: 145px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--secondary-50), var(--primary-50));
  border: 1px solid var(--secondary-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span {
  color: var(--secondary-900);
  font-size: 20px;
  font-weight: 850;
}

.category-tile small {
  color: var(--secondary-600);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(244, 63, 94, 0.42), transparent 32%), linear-gradient(135deg, var(--secondary-900), #111827 62%, #3f0c1d);
}

.small-hero {
  padding: 86px 0 74px;
}

.page-hero h1 {
  max-width: 880px;
  margin: 18px 0 10px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--secondary-200);
  font-size: 18px;
}

.category-panels {
  display: grid;
  gap: 24px;
}

.category-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-panel-copy h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-panel-copy p {
  margin: 0 0 18px;
  color: var(--secondary-600);
}

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

.compact-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: var(--secondary-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
}

.compact-card img {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
}

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

.compact-card strong {
  overflow: hidden;
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.compact-card small {
  color: var(--secondary-500);
  font-size: 12px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--secondary-50);
  border: 1px solid var(--secondary-200);
}

.large-filter {
  align-items: stretch;
  flex-direction: column;
}

.search-box {
  flex: 1;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--secondary-200);
  border-radius: 14px;
  color: var(--secondary-900);
  background: var(--white);
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

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

.quick-filters button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--secondary-700);
  background: var(--white);
  cursor: pointer;
  font-weight: 750;
}

.quick-filters button:hover,
.quick-filters button.active {
  color: var(--white);
  background: var(--primary-600);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 112px minmax(0, 1fr) auto 74px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.rank-row:hover {
  color: var(--primary-600);
  transform: translateX(4px);
  transition: transform 0.2s ease, color 0.2s ease;
}

.rank-row > strong {
  color: var(--primary-600);
  font-size: 20px;
}

.rank-row img {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

.rank-copy b,
.rank-copy small {
  display: block;
}

.rank-copy small {
  color: var(--secondary-500);
}

.rank-tags span {
  color: var(--secondary-600);
  background: var(--secondary-100);
}

.rank-row em {
  color: var(--accent-500);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  filter: blur(2px);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.96));
}

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

.detail-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 44px;
  align-items: center;
  min-height: 560px;
  padding-top: 46px;
  padding-bottom: 46px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

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

.detail-info .breadcrumb {
  background: rgba(255, 255, 255, 0.14);
  color: var(--secondary-100);
}

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

.detail-info h1 {
  margin: 22px 0 14px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.08;
}

.detail-info p {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--secondary-200);
  font-size: 18px;
}

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

.detail-meta span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 750;
}

.detail-info .tag-cloud {
  margin-bottom: 24px;
}

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

.detail-main,
.detail-side,
.player-panel,
.article-block {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-main {
  display: grid;
  gap: 22px;
  background: transparent;
  box-shadow: none;
}

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

.player-panel h2,
.article-block h2,
.detail-side h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  z-index: 4;
}

.player-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 20px 45px rgba(244, 63, 94, 0.32);
  font-size: 34px;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.article-block p {
  margin: 0;
  color: var(--secondary-700);
  font-size: 17px;
}

.detail-side {
  position: sticky;
  top: 96px;
}

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

.site-footer {
  margin-top: 0;
  color: var(--secondary-100);
  background: var(--secondary-900);
}

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

.footer-logo strong {
  color: var(--white);
  font-size: 18px;
}

.footer-brand p {
  max-width: 560px;
  color: var(--secondary-400);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list a {
  color: var(--secondary-400);
  font-size: 14px;
}

.footer-list a:hover {
  color: var(--primary-400);
}

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--secondary-400);
  text-align: center;
}

.is-filter-hidden {
  display: none !important;
}

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

  .detail-layout,
  .topic-grid,
  .category-panel {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

  .hero-section {
    height: 76vh;
    min-height: 560px;
  }

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

  .content-section {
    padding: 52px 0;
  }

  .section-heading,
  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .wide-card img {
    width: 100%;
  }

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

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

  .rank-tags {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand-title {
    font-size: 17px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-section {
    min-height: 610px;
  }

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

  .hero-copy h2 {
    font-size: 30px;
  }

  .hero-dots {
    right: auto;
    left: 16px;
    bottom: 20px;
  }

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

  .rail-item {
    flex-basis: 82vw;
  }

  .topic-main {
    min-height: 360px;
  }

  .small-hero {
    padding: 62px 0 54px;
  }

  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

  .detail-hero-grid {
    min-height: auto;
  }

  .player-panel,
  .article-block,
  .detail-side {
    padding: 18px;
  }

  .rank-row {
    grid-template-columns: 38px 72px minmax(0, 1fr);
  }

  .rank-row em {
    display: none;
  }
}
