* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 42%, #ffffff 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
  box-shadow: 0 10px 28px rgba(14, 116, 144, 0.25);
}

.nav-inner {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-icon,
.footer-brand span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #ffffff;
  font-weight: 600;
}

.nav-links a,
.nav-dropdown-title {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-dropdown-title:hover {
  color: #e0f2fe;
}

.nav-dropdown {
  position: relative;
  padding: 20px 0;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: 58px;
  width: 190px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  color: #334155;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.dropdown-link:hover {
  color: #0369a1;
  background: #f0f9ff;
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
}

.nav-search input,
.mobile-search input,
.filter-bar input,
.search-panel input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: #ffffff;
  color: #0f172a;
}

.nav-search input {
  width: 200px;
  padding: 8px 16px;
  border-radius: 999px 0 0 999px;
}

.nav-search button,
.mobile-search button,
.search-panel button {
  border: 0;
  color: #ffffff;
  background: #0369a1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-search button {
  padding: 8px 16px;
  border-radius: 0 999px 999px 0;
}

.nav-search button:hover,
.mobile-search button:hover,
.search-panel button:hover {
  background: #075985;
}

.menu-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  background: transparent;
  font-size: 26px;
}

.mobile-panel {
  display: none;
  padding: 16px 24px 22px;
  background: rgba(2, 132, 199, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-panel.open {
  display: block;
}

.mobile-link {
  display: block;
  padding: 10px 0;
  color: #ffffff;
  font-weight: 600;
}

.mobile-search {
  margin-top: 12px;
}

.mobile-search input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px 0 0 999px;
}

.mobile-search button {
  padding: 10px 16px;
  border-radius: 0 999px 999px 0;
}

.hero-carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.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.9) 0%, rgba(0, 0, 0, 0.55) 44%, rgba(0, 0, 0, 0.04) 100%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  right: 24px;
  bottom: 74px;
  max-width: 760px;
  color: #ffffff;
}

.hero-tags,
.detail-meta-row,
.card-labels,
.tag-row,
.detail-tags,
.genre-cloud,
.overview-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-tags span,
.detail-meta-row span,
.detail-meta-row a,
.card-labels span,
.card-labels a,
.tag-row span,
.detail-tags span,
.genre-cloud span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-tags span:first-child,
.detail-meta-row a,
.card-labels a {
  background: #0ea5e9;
  color: #ffffff;
}

.hero-tags span,
.detail-meta-row span,
.card-labels span {
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  margin: 16px 0 14px;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.7;
}

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

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

.primary-btn {
  padding: 13px 28px;
  color: #ffffff;
  background: #0ea5e9;
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.32);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.primary-btn:hover {
  background: #0284c7;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.34);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #ffffff;
}

.content-main,
.section-wrap,
.detail-wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.section-wrap {
  padding: 58px 0;
}

.content-main {
  padding-bottom: 56px;
}

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

.section-title-row.compact {
  align-items: center;
  margin-bottom: 20px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: #0284c7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title-row h2,
.page-hero h1,
.detail-content h1,
.detail-side h2,
.info-box h2,
.category-overview-card h2 {
  margin: 0;
  color: #1f2937;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-title-row h2 {
  font-size: 34px;
}

.section-title-row > a,
.text-link {
  color: #0284c7;
  font-weight: 800;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.card-cover,
.overview-cover,
.rank-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}

.card-cover {
  aspect-ratio: 16 / 10;
}

.card-cover img,
.overview-cover img,
.rank-cover img,
.category-tile img,
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .card-cover img,
.category-tile:hover img,
.related-card:hover img,
.category-overview-card:hover .overview-cover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.play-badge,
.player-glow {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: #0ea5e9;
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.34);
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.cover-meta {
  position: absolute;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.48);
}

.cover-meta.left {
  left: 12px;
}

.cover-meta.right {
  right: 12px;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.card-labels span,
.card-labels a,
.tag-row span,
.detail-tags span,
.genre-cloud span {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.card-labels span {
  background: #f1f5f9;
  color: #475569;
}

.card-body h3 {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #0284c7;
}

.card-body p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  margin-top: auto;
}

.tag-row span,
.genre-cloud span {
  background: #e0f2fe;
  color: #0369a1;
}

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

.category-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.84), rgba(2, 6, 23, 0.12));
}

.category-tile div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  z-index: 1;
}

.category-tile span {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.6;
}

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

.ranking-panel,
.info-box,
.category-overview-card,
.search-panel,
.filter-bar,
.page-hero {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.ranking-panel {
  position: sticky;
  top: 88px;
  padding: 24px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.rank-cover {
  aspect-ratio: 16 / 11;
  border-radius: 14px;
}

.rank-cover span {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: #0ea5e9;
}

.rank-info h3 {
  margin: 4px 0 6px;
  font-size: 17px;
  line-height: 1.35;
}

.rank-info h3 a:hover {
  color: #0284c7;
}

.rank-info p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-meta {
  color: #0284c7;
  font-size: 12px;
  font-weight: 800;
}

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

.footer-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.footer-grid p {
  max-width: 430px;
  margin: 16px 0 0;
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

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

.footer-grid a:hover {
  color: #38bdf8;
}

.footer-bottom {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.page-hero {
  margin-top: 34px;
  padding: 42px;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.page-hero p {
  max-width: 820px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.75;
}

.filter-bar,
.search-panel {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  padding: 16px;
}

.filter-bar input,
.search-panel input {
  flex: 1;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.filter-bar a,
.search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.filter-bar a {
  color: #ffffff;
  background: #0ea5e9;
}

.search-panel button {
  border: 0;
}

.overview-grid {
  padding: 46px 0 0;
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  padding: 18px;
}

.overview-cover {
  min-height: 190px;
  border-radius: 18px;
}

.category-overview-card h2 {
  font-size: 28px;
}

.category-overview-card p {
  margin: 12px 0 18px;
  color: #475569;
  line-height: 1.8;
}

.overview-links a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #0369a1;
  font-size: 13px;
  font-weight: 800;
  background: #e0f2fe;
}

.text-link {
  margin-top: 20px;
}

.genre-cloud {
  gap: 10px;
}

.detail-main {
  min-height: 70vh;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.detail-wrap {
  padding: 32px 0 68px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a {
  color: #0284c7;
  font-weight: 800;
}

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

.detail-content h1 {
  margin: 18px 0;
  font-size: clamp(32px, 5vw, 46px);
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.25);
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.movie-video {
  display: block;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000000;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.18));
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  object-fit: cover;
}

.player-glow {
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 82px;
  height: 82px;
  font-size: 30px;
  transform: translate(-50%, -50%);
}

.player-loading,
.player-error {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-align: center;
  background: rgba(0, 0, 0, 0.82);
}

.player-loading[hidden],
.player-error[hidden] {
  display: none;
}

.player-loading span {
  width: 58px;
  height: 58px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-top-color: #38bdf8;
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.player-error button {
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  background: #0ea5e9;
}

.detail-meta-row {
  margin-top: 22px;
}

.detail-meta-row span,
.detail-meta-row a {
  color: #334155;
  background: #e2e8f0;
}

.detail-meta-row a {
  color: #ffffff;
  background: #0ea5e9;
}

.one-line {
  margin: 0 0 22px;
  padding: 18px;
  border-left: 5px solid #38bdf8;
  border-radius: 0 16px 16px 0;
  background: #e0f2fe;
}

.one-line p {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.info-box {
  margin-top: 22px;
  padding: 24px;
}

.info-box h2 {
  position: relative;
  padding-left: 16px;
  margin-bottom: 14px;
  font-size: 22px;
}

.info-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: #0ea5e9;
}

.info-box p,
.info-box blockquote {
  margin: 0;
  color: #475569;
  line-height: 1.9;
}

.highlight-box {
  background: linear-gradient(135deg, #ffffff, #e0f2fe);
}

.highlight-box blockquote {
  padding-left: 18px;
  border-left: 4px solid #38bdf8;
  font-style: italic;
}

.detail-tags span {
  background: #e0f2fe;
  color: #0369a1;
}

.detail-side {
  min-width: 0;
}

.side-sticky {
  position: sticky;
  top: 92px;
}

.detail-side h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.related-card img {
  aspect-ratio: 16 / 11;
  border-radius: 12px;
}

.related-card span {
  color: #0284c7;
  font-size: 12px;
  font-weight: 900;
}

.related-card strong {
  display: block;
  margin: 4px 0 6px;
  color: #1f2937;
  line-height: 1.35;
}

.related-card:hover strong {
  color: #0284c7;
}

.related-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-heading {
  margin: 0 0 20px;
  color: #334155;
  font-size: 18px;
  font-weight: 900;
}

.is-filtered-out {
  display: none;
}

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

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

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

  .ranking-panel,
  .side-sticky {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-search {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-content {
    left: 24px;
    bottom: 74px;
  }

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

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

@media (max-width: 640px) {
  .nav-inner {
    padding: 0 16px;
  }

  .content-main,
  .section-wrap,
  .detail-wrap,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1280px);
  }

  .hero-carousel {
    height: 540px;
  }

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

  .hero-arrow {
    display: none;
  }

  .section-wrap {
    padding: 38px 0;
  }

  .section-title-row,
  .filter-bar,
  .search-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .section-title-row h2 {
    font-size: 28px;
  }

  .page-hero {
    margin-top: 22px;
    padding: 28px;
  }

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

  .rank-item,
  .related-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .player-glow {
    width: 68px;
    height: 68px;
  }
}
