:root {
  --night-950: #050713;
  --night-900: #0a0f1f;
  --night-850: #0d1326;
  --night-800: #121a2e;
  --night-700: #1d2942;
  --night-600: #2d3a56;
  --night-400: #8d98ac;
  --night-300: #c1c8d6;
  --gold-500: #f8c84b;
  --gold-400: #f6d56e;
  --ember-500: #f97316;
  --rose-500: #e11d48;
  --white: #ffffff;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(248, 200, 75, 0.12), transparent 36rem),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 34rem),
    var(--night-950);
  color: var(--night-300);
  min-height: 100vh;
}

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(10, 15, 31, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(248, 200, 75, 0.14);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--white);
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  color: var(--night-950);
  box-shadow: 0 0 28px rgba(248, 200, 75, 0.32);
}

.brand-text,
.footer-brand {
  font-size: 21px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--gold-400), #ff9f43);
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-nav-link {
  color: #e5e7eb;
  border-radius: 12px;
  transition: 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.06);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-input,
.filter-select {
  border: 1px solid rgba(141, 152, 172, 0.24);
  background: rgba(18, 26, 46, 0.92);
  color: var(--white);
  outline: 0;
  border-radius: 14px;
  transition: 0.2s ease;
}

.header-search input {
  width: 210px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--night-950);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.filter-select:focus {
  border-color: rgba(248, 200, 75, 0.75);
  box-shadow: 0 0 0 3px rgba(248, 200, 75, 0.12);
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

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

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

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

.mobile-search input {
  flex: 1;
  padding: 12px 14px;
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--night-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

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

.hero-overlay,
.detail-hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 19, 0.96), rgba(5, 7, 19, 0.78) 44%, rgba(5, 7, 19, 0.36)),
    linear-gradient(0deg, var(--night-950), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  padding-top: 20px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(248, 200, 75, 0.28);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--gold-400);
  background: rgba(248, 200, 75, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  font-size: clamp(42px, 7vw, 78px);
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  color: #d8deea;
  line-height: 1.8;
}

.hero-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 19px;
}

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

.hero-tags span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 22px;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.22);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.32);
}

.ghost-button {
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ghost-button:hover,
.text-button:hover {
  color: var(--gold-400);
  border-color: rgba(248, 200, 75, 0.4);
}

.hero-thumbs {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 64px;
  width: 360px;
  display: grid;
  gap: 12px;
}

.hero-thumb {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 8px;
  cursor: pointer;
  color: var(--white);
  text-align: left;
  background: rgba(10, 15, 31, 0.54);
  backdrop-filter: blur(14px);
  transition: 0.2s ease;
}

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

.hero-thumb span {
  font-weight: 800;
  line-height: 1.4;
}

.hero-thumb:hover,
.hero-thumb.active {
  border-color: rgba(248, 200, 75, 0.72);
  background: rgba(248, 200, 75, 0.1);
}

.hero-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

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

.hero-dot.active {
  width: 32px;
  background: linear-gradient(90deg, var(--gold-500), var(--ember-500));
}

.content-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.home-intro {
  padding-top: 42px;
  padding-bottom: 12px;
}

.intro-panel,
.story-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(135deg, rgba(18, 26, 46, 0.92), rgba(10, 15, 31, 0.72));
  box-shadow: var(--shadow);
}

.intro-panel h2,
.section-heading h2,
.story-panel h2 {
  margin: 0;
  color: var(--white);
  letter-spacing: -0.04em;
}

.intro-panel h2,
.section-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.intro-panel p,
.story-panel p {
  line-height: 1.9;
  margin: 14px 0 0;
}

.quick-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quick-category-row a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--gold-400);
  background: rgba(248, 200, 75, 0.1);
  border: 1px solid rgba(248, 200, 75, 0.18);
}

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

.section-heading .eyebrow {
  margin-bottom: 9px;
}

.section-link,
.text-button {
  color: var(--gold-400);
}

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

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

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

.poster-link,
.poster-wrap {
  display: block;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: var(--night-800);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(5, 7, 19, 0.95));
  transition: 0.3s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.quality-badge,
.ranking-pos {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 9px;
  padding: 5px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgba(10, 15, 31, 0.72);
  backdrop-filter: blur(10px);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  transform: translate(-50%, -50%) scale(0.76);
  opacity: 0;
  transition: 0.25s ease;
}

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

.movie-card-body {
  padding-top: 13px;
}

.movie-card-body h3 {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.4;
}

.movie-card-body h3 a:hover {
  color: var(--gold-400);
}

.movie-card-body p {
  display: -webkit-box;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--night-400);
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  color: var(--gold-400);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 58px 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 10px;
  background: rgba(18, 26, 46, 0.76);
  transition: 0.2s ease;
}

.rank-item:hover {
  border-color: rgba(248, 200, 75, 0.42);
  transform: translateX(3px);
}

.rank-number {
  color: var(--gold-400);
  font-weight: 900;
  font-size: 19px;
}

.rank-item img {
  width: 58px;
  height: 78px;
  border-radius: 12px;
  object-fit: cover;
}

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

.rank-info strong {
  color: var(--white);
  line-height: 1.4;
}

.rank-info em {
  margin-top: 5px;
  color: var(--night-400);
  font-style: normal;
  font-size: 13px;
}

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

.category-tile {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  isolation: isolate;
  background: var(--night-800);
}

.category-tile img,
.category-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: 0.45s ease;
}

.category-tile:hover img,
.category-cover:hover img {
  transform: scale(1.08);
}

.category-tile-shade,
.category-cover span {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 7, 19, 0.16), rgba(5, 7, 19, 0.92));
}

.category-tile strong {
  color: var(--white);
  font-size: 22px;
}

.category-tile em {
  display: block;
  margin-top: 8px;
  color: #d6dce9;
  font-style: normal;
  line-height: 1.6;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.small-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 36px auto 0;
  border-radius: 28px;
  padding: 72px 42px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 26rem),
    linear-gradient(135deg, rgba(18, 26, 46, 0.95), rgba(10, 15, 31, 0.95));
  box-shadow: var(--shadow);
}

.small-hero h1,
.category-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.small-hero p {
  max-width: 720px;
  font-size: 18px;
}

.category-hero {
  min-height: 430px;
  display: flex;
  align-items: end;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 60px;
}

.page-hero-content p {
  max-width: 780px;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--night-300);
}

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

.filter-tools {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
}

.filter-selects {
  display: flex;
  gap: 12px;
}

.filter-select {
  min-width: 150px;
  padding: 13px 14px;
}

.filter-card.hidden {
  display: none;
}

.category-overview-grid {
  display: grid;
  gap: 22px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 290px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(18, 26, 46, 0.72);
  box-shadow: var(--shadow);
}

.category-cover {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: var(--night-800);
}

.category-overview-body {
  padding: 28px;
}

.category-overview-body h2 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
}

.category-overview-body p {
  line-height: 1.8;
}

.mini-posters {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.mini-posters img {
  width: 58px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

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

.ranking-card a {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px;
  background: var(--night-800);
}

.ranking-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.ranking-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 7, 19, 0.92));
}

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

.ranking-pos {
  left: 14px;
  right: auto;
  z-index: 2;
}

.ranking-text {
  position: relative;
  z-index: 2;
}

.ranking-text strong,
.ranking-text em {
  display: block;
}

.ranking-text strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.ranking-text em {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #dce2ef;
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.detail-hero {
  min-height: 650px;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 68px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: var(--night-800);
}

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

.detail-info h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.detail-one-line {
  max-width: 780px;
  margin: 20px 0 0;
  font-size: 20px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-content {
  padding-top: 40px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(5, 7, 19, 0.06), rgba(5, 7, 19, 0.54));
  transition: 0.25s ease;
}

.play-overlay span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night-950);
  font-size: 34px;
  background: linear-gradient(135deg, var(--gold-500), var(--ember-500));
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.32);
}

.player-shell.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.story-panel {
  margin-top: 28px;
}

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

.site-footer {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 19, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.footer-inner p {
  margin: 12px 0 0;
  line-height: 1.8;
}

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

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

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: var(--night-400);
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

  .hero-thumbs {
    width: min(360px, calc(100% - 32px));
    right: 16px;
  }

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

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

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

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-carousel {
    height: 680px;
  }

  .hero-content {
    align-items: start;
    padding-top: 86px;
  }

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

  .hero-thumbs {
    left: 16px;
    right: 16px;
    bottom: 54px;
    width: auto;
    grid-template-columns: 1fr;
  }

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

  .movie-grid,
  .wide-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .split-section,
  .detail-layout,
  .footer-inner,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

  .filter-tools {
    flex-direction: column;
  }

  .filter-selects {
    flex-wrap: wrap;
  }

  .filter-select {
    flex: 1;
  }

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

@media (max-width: 560px) {
  .header-inner {
    width: min(100% - 22px, var(--max));
  }

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

  .hero-carousel {
    height: 710px;
  }

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

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

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .content-wrap {
    width: min(100% - 22px, var(--max));
    padding: 42px 0;
  }

  .movie-grid,
  .wide-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .movie-card-body h3 {
    font-size: 15px;
  }

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

  .small-hero {
    width: min(100% - 22px, var(--max));
    padding: 48px 24px;
  }

  .page-hero-content,
  .detail-hero-inner {
    width: min(100% - 22px, var(--max));
  }

  .detail-info h1,
  .small-hero h1,
  .category-hero h1 {
    font-size: 38px;
  }

  .play-overlay span {
    width: 72px;
    height: 72px;
  }
}
