:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --orange: #f97316;
  --red: #ef4444;
  --slate: #0f172a;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate);
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.logo-text {
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  padding: 9px 14px;
  color: #334155;
  border-radius: 999px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--blue);
  background: #eff6ff;
}

.header-search {
  padding: 9px 16px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--blue);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-search:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  padding: 0 24px 16px;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #0891b2);
}

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

.hero-slide {
  display: flex;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1280px) / 2 + 24px)) 128px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 1.2s ease;
}

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

.hero-content {
  max-width: 700px;
  color: #ffffff;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #67e8f9;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #dbeafe;
  font-size: 20px;
}

.hero-tags,
.detail-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-bottom: 30px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.34);
}

.btn.primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px) scale(1.02);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

.btn.ghost.dark {
  color: var(--slate);
  background: #eef2ff;
  border-color: #dbeafe;
}

.btn.text {
  color: #bfdbfe;
  padding-inline: 8px;
}

.hero-thumbs {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.42);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-thumb.is-active,
.hero-thumb:hover {
  background: rgba(37, 99, 235, 0.72);
  transform: translateY(-2px);
}

.hero-thumb img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-thumb span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 800;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.46);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(37, 99, 235, 0.82);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.inner-wrap {
  padding-block: 72px;
}

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

.section-heading h2,
.center-heading h2,
.feature-copy h2,
.copy-card h2 {
  margin: 0;
  color: var(--slate);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.section-kicker {
  color: var(--blue);
  margin-bottom: 6px;
}

.section-kicker.orange {
  color: var(--orange);
}

.compact-heading {
  align-items: center;
  margin-bottom: 24px;
}

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

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

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

.movie-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.card-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.card-poster img,
.rail-poster img,
.category-tile img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.movie-card-link:hover .card-poster img,
.rail-card:hover .rail-poster img,
.category-tile:hover img,
.detail-poster:hover img {
  transform: scale(1.08);
}

.card-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card-link:hover .card-mask {
  opacity: 1;
}

.play-dot,
.big-play {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.92);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: 12px;
  right: auto;
  min-width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

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

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card-body h3 {
  margin: 0 0 10px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 900;
  transition: color 0.2s ease;
}

.movie-card-link:hover h3,
.rail-card:hover h3 {
  color: var(--blue);
}

.card-summary,
.rail-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-summary.compact {
  min-height: 42px;
  -webkit-line-clamp: 2;
}

.card-tags {
  margin-top: auto;
}

.card-tags span {
  color: #1d4ed8;
  background: #dbeafe;
}

.soft-band {
  margin: 0;
}

.emerald-band {
  background: linear-gradient(90deg, #ecfdf5, #f0fdfa);
}

.blue-band {
  background: linear-gradient(180deg, #eff6ff, #ecfeff);
}

.movie-rail {
  display: flex;
  gap: 22px;
  margin: 0 -24px;
  padding: 6px 24px 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.movie-rail::-webkit-scrollbar {
  height: 8px;
}

.movie-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.24);
}

.rail-card {
  flex: 0 0 330px;
  scroll-snap-align: start;
}

.rail-card a {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rail-card a:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow);
}

.rail-poster {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #e2e8f0;
}

.rail-poster span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--emerald);
  font-size: 12px;
  font-weight: 800;
}

.rail-body {
  padding: 18px;
}

.rail-body small {
  color: var(--muted);
  font-weight: 800;
}

.rail-body h3 {
  margin: 8px 0 8px;
  color: var(--slate);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-heading p,
.feature-copy p,
.page-hero p,
.copy-card p {
  color: var(--muted);
  font-size: 17px;
}

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

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

.category-tile {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border-radius: 28px;
  color: #ffffff;
  box-shadow: var(--soft-shadow);
}

.category-tile img,
.category-shade {
  position: absolute;
  inset: 0;
}

.category-shade {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.86));
}

.category-tile strong,
.category-tile small {
  position: relative;
  z-index: 1;
}

.category-tile strong {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile small {
  color: #e0f2fe;
  font-size: 14px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.6fr);
  gap: 34px;
  align-items: start;
}

.feature-copy {
  position: sticky;
  top: 96px;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

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

.feature-list .rail-card {
  flex-basis: auto;
}

.page-hero,
.detail-hero {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 74px 24px;
  border-radius: 34px;
}

.page-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #0891b2);
  background-size: cover;
  background-position: center;
}

.page-hero > div {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  color: var(--slate);
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.no-results {
  padding: 28px;
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.ranking-block + .ranking-block {
  margin-top: 56px;
}

.breadcrumb {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #eff6ff);
  box-shadow: var(--soft-shadow);
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: #e2e8f0;
  box-shadow: var(--shadow);
}

.detail-info h1 {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.lead-text {
  max-width: 760px;
  margin: 0 0 24px;
  color: #475569;
  font-size: 19px;
}

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

.detail-tags span {
  color: #1d4ed8;
  background: #dbeafe;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.detail-meta-grid span {
  padding: 12px 14px;
  border-radius: 16px;
  color: #334155;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.24);
}

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

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

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

.big-play {
  width: 84px;
  height: 84px;
  font-size: 34px;
}

.play-overlay strong {
  max-width: min(680px, 84vw);
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.15;
  text-align: center;
}

.detail-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  padding-top: 36px;
}

.copy-card {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.copy-card h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.copy-card p {
  margin: 0;
  color: #475569;
}

.accent-card {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.site-footer {
  margin-top: 48px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.footer-logo {
  color: #ffffff;
  font-size: 22px;
}

.footer-inner p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

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

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

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

  .split-feature,
  .detail-hero,
  .detail-copy {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

  .hero-slider {
    height: 680px;
  }

  .hero-slide {
    align-items: flex-start;
    padding: 74px 20px 190px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 20px;
    right: 20px;
  }

  .hero-thumb:nth-child(n+5) {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .section-wrap,
  .inner-wrap {
    padding: 48px 18px;
  }

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

  .movie-grid,
  .rank-grid,
  .related-grid,
  .category-grid,
  .category-grid.large,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .rail-card {
    flex-basis: 280px;
  }

  .page-hero,
  .detail-hero {
    margin: 18px 18px 0;
    padding: 42px 20px;
    border-radius: 26px;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding-inline: 16px;
  }

  .logo-text {
    font-size: 17px;
  }

  .hero-slider {
    height: 720px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

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

  .btn {
    width: 100%;
  }

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

  .hero-thumb:nth-child(n+4) {
    display: none;
  }

  .movie-grid,
  .rank-grid,
  .related-grid,
  .category-grid,
  .category-grid.large,
  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .big-play {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
