:root {
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --yellow: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon,
.footer-logo span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.brand strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-weight: 700;
}

.main-nav a,
.nav-dropdown button {
  color: #ffffff;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.nav-dropdown button:hover {
  color: #fef08a;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  min-width: 188px;
  padding: 8px;
  color: var(--gray-800);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 14px;
  color: var(--gray-800);
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  color: var(--orange);
  background: #fff7ed;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.header-search input {
  width: 160px;
  color: #ffffff;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.header-search button {
  color: #ffffff;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  color: #ffffff;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

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

.mobile-panel a {
  display: block;
  padding: 10px 0;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, #fb923c 0%, #ef4444 48%, #ec4899 100%);
}

.hero-blobs span {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  filter: blur(55px);
}

.hero-blobs span:first-child {
  top: 28px;
  left: 6%;
}

.hero-blobs span:last-child {
  right: 5%;
  bottom: -80px;
  width: 520px;
  height: 520px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 42px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -1.6px;
}

.hero h2 {
  margin: 18px 0 12px;
  font-size: clamp(26px, 3vw, 42px);
}

.hero p {
  max-width: 660px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.96;
}

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

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  padding: 7px 12px;
  color: #9a3412;
  background: #ffedd5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

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

.hero-actions.single-line {
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.btn.primary {
  color: var(--orange);
  background: #ffffff;
}

.btn.ghost {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
}

.btn.glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.btn.white {
  color: var(--orange);
  background: #ffffff;
}

.btn.small {
  min-height: 40px;
  padding: 0 20px;
}

.hero-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 520px;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
  transform: rotate(2deg);
}

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

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

.hero-visual span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #ffffff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  opacity: 0.78;
  backdrop-filter: blur(10px);
}

.hero-thumb.is-active,
.hero-thumb:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.24);
}

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

.hero-thumb span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.section.white {
  background: #ffffff;
}

.section.soft {
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.section.gray {
  background: var(--gray-100);
}

.section.warm {
  background: linear-gradient(135deg, #fef2f2, #fff7ed, #fefce8);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--gray-800);
}

.section-heading p {
  margin: 9px 0 0;
  color: var(--gray-500);
}

.section-more {
  color: var(--red);
  font-weight: 900;
}

.poster-grid,
.video-grid,
.wide-grid,
.category-grid,
.category-overview-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

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

.poster-card,
.video-card,
.wide-card,
.rank-row,
.category-overview-card {
  min-width: 0;
}

.poster-link figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  background: #fed7aa;
  box-shadow: var(--shadow);
}

.poster-link img,
.video-thumb img,
.wide-card img,
.rank-row img,
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.poster-card:hover img,
.video-card:hover img,
.wide-card:hover img {
  transform: scale(1.09);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  color: #ffffff;
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.play-float {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--red);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.poster-link figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  color: #ffffff;
}

.poster-link strong,
.video-card h3,
.wide-card h3,
.rank-row h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.poster-link small {
  display: block;
  margin-top: 6px;
  opacity: 0.82;
}

.poster-card.compact figcaption {
  padding: 12px;
}

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

.video-card a,
.wide-card a,
.rank-row a {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.video-card a:hover,
.wide-card a:hover,
.rank-row a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.view-pill,
.type-pill {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.view-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
}

.type-pill {
  color: #c2410c;
  background: #ffedd5;
}

.video-body {
  padding: 18px;
}

.video-body h3 {
  margin-top: 10px;
  color: var(--gray-800);
  font-size: 18px;
}

.video-body p,
.wide-card p,
.rank-row p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0;
  color: var(--gray-500);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  color: var(--yellow);
  font-weight: 900;
}

.category-card {
  display: grid;
  min-height: 126px;
  align-content: center;
  padding: 28px;
  color: #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px) scale(1.01);
}

.category-card span {
  font-size: 24px;
  font-weight: 900;
}

.category-card strong {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.gradient-0 {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.gradient-1 {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.gradient-2 {
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.gradient-3 {
  background: linear-gradient(135deg, #facc15, #f97316);
}

.wide-card a {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.wide-card img {
  aspect-ratio: 1 / 1;
}

.wide-card div {
  padding: 22px;
}

.wide-card span {
  display: inline-flex;
  padding: 5px 10px;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.wide-card strong {
  color: var(--yellow);
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 64px 84px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
}

.rank-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 16px;
  font-weight: 1000;
}

.rank-row img {
  width: 84px;
  height: 104px;
  border-radius: 14px;
}

.rank-row strong {
  color: var(--red);
}

.cta-band,
.page-hero {
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
}

.cta-band .container,
.page-hero .container {
  padding: 72px 0;
}

.cta-band h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
}

.cta-band p,
.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.92;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.compact-hero .container {
  padding: 62px 0;
}

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

.category-overview-card {
  overflow: hidden;
  min-height: 280px;
  padding: 26px;
  color: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

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

.category-overview-card p {
  min-height: 78px;
  line-height: 1.65;
  opacity: 0.92;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-samples a {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 190px 190px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.filter-panel input,
.filter-panel select,
.big-search input {
  min-height: 46px;
  width: 100%;
  padding: 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  outline: 0;
  background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus,
.big-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.empty-tip {
  display: none;
  margin: 34px 0 0;
  color: var(--gray-500);
  text-align: center;
  font-weight: 800;
}

.empty-tip.is-visible {
  display: block;
}

.big-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  max-width: 740px;
  margin: 30px auto 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.big-search input {
  border: 0;
}

.big-search button {
  padding: 0 28px;
  color: var(--orange);
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.search-status {
  margin-bottom: 20px;
  color: var(--gray-700);
  font-size: 18px;
  font-weight: 900;
}

.search-hot {
  margin-top: 34px;
}

.player-section {
  color: #ffffff;
  background: #050505;
}

.player-section .container {
  padding: 30px 0 34px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

.player-shell video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.player-overlay span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--red);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

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

.player-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.player-title-row h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.player-title-row p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
}

.detail-cover img {
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.detail-content h2 {
  margin: 28px 0 12px;
  font-size: 28px;
}

.detail-content p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.9;
}

.movie-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.movie-meta-list div {
  padding: 14px;
  background: #fff7ed;
  border-radius: 16px;
}

.movie-meta-list dt {
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
}

.movie-meta-list dd {
  margin: 6px 0 0;
  color: var(--gray-800);
}

.detail-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.detail-pager a {
  padding: 14px 16px;
  color: var(--red);
  background: #fff1f2;
  border-radius: 16px;
  font-weight: 900;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  max-width: 440px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
}

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

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 780px;
  }

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

  .hero-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .poster-grid,
  .latest-grid,
  .video-grid,
  .video-grid.all-grid,
  .wide-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-cover {
    max-width: 320px;
  }
}

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

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero-inner {
    padding-top: 48px;
  }

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

  .hero p,
  .cta-band p,
  .page-hero p {
    font-size: 17px;
  }

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

  .section {
    padding: 48px 0;
  }

  .section-heading,
  .player-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-grid,
  .latest-grid,
  .video-grid,
  .video-grid.all-grid,
  .wide-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .wide-card a,
  .rank-row a,
  .filter-panel,
  .big-search,
  .movie-meta-list,
  .detail-pager {
    grid-template-columns: 1fr;
  }

  .rank-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .rank-number {
    width: 44px;
    height: 44px;
  }

  .player-overlay span {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
