*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-50: #fff7ed;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(146, 64, 14, .16);
  --shadow: 0 22px 60px rgba(120, 53, 15, .16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--amber-50), #ffffff 32%, var(--orange-50));
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff7ed;
  background: linear-gradient(90deg, var(--amber-900), var(--amber-700), var(--amber-600));
  box-shadow: 0 12px 40px rgba(120, 53, 15, .22);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--amber-900);
  background: linear-gradient(135deg, #fef3c7, #f59e0b);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .55), 0 10px 30px rgba(0, 0, 0, .18);
}

.brand-text {
  white-space: nowrap;
  font-size: 22px;
}

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

.nav-link,
.nav-dropdown > button {
  border: 0;
  color: #fff7ed;
  cursor: pointer;
  background: transparent;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown > button:hover {
  color: #fde68a;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  display: grid;
  gap: 4px;
  width: 190px;
  padding: 10px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

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

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--amber-900);
}

.dropdown-panel a:hover {
  background: var(--amber-100);
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 280px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.nav-search input {
  min-width: 0;
  flex: 1;
  padding: 11px 14px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, .72);
}

.nav-search button {
  border: 0;
  padding: 11px 16px;
  cursor: pointer;
  color: var(--amber-900);
  background: #fef3c7;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, .12);
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
}

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

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

.mobile-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
}

.mobile-panel form {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, .14);
}

.mobile-panel input {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border: 0;
  color: white;
  outline: 0;
  background: transparent;
}

.mobile-panel button {
  padding: 0 16px;
  border: 0;
  color: var(--amber-900);
  background: #fef3c7;
  font-weight: 800;
}

.hero-carousel {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #1f1308;
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(2px) saturate(1.05);
  transform: scale(1.03);
}

.hero-overlay,
.detail-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 50%, rgba(245, 158, 11, .34), transparent 34%),
    linear-gradient(90deg, rgba(44, 22, 5, .9), rgba(120, 53, 15, .72) 48%, rgba(254, 243, 199, .2));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  align-items: center;
  gap: 56px;
  height: 100%;
  color: #fff7ed;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #78350f;
  background: rgba(254, 243, 199, .92);
  font-weight: 900;
  letter-spacing: .04em;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.04em;
}

.hero-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 42px);
  color: #fde68a;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
  margin: 0 0 22px;
  color: rgba(255, 251, 235, .9);
  font-size: 18px;
  line-height: 1.85;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--amber-900);
  background: #fef3c7;
  font-size: 13px;
  font-weight: 800;
}

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

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
  box-shadow: 0 14px 35px rgba(146, 64, 14, .32);
}

.btn-light {
  color: var(--amber-900);
  background: #fff7ed;
}

.btn-primary:hover,
.btn-light:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  justify-self: center;
  display: block;
  width: min(390px, 100%);
  padding: 14px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--amber-900);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  font-size: 34px;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

.hero-dot.is-active {
  width: 36px;
  background: var(--amber-500);
}

.quick-panel {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.quick-grid {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search,
.page-filter,
.search-page-form {
  display: flex;
  gap: 12px;
}

.hero-search input,
.page-filter input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  background: white;
}

.hero-search button,
.page-filter button {
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: white;
  cursor: pointer;
  background: var(--amber-700);
  font-weight: 900;
}

.category-chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-chips a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--amber-900);
  background: var(--amber-100);
  font-weight: 800;
}

.section-block {
  padding: 70px 0 0;
}

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

.section-title h2 {
  margin: 0 0 8px;
  color: var(--amber-900);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.section-title p {
  margin: 0;
  color: var(--amber-700);
  line-height: 1.7;
}

.section-title > a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--amber-900);
  background: var(--amber-100);
  font-weight: 900;
}

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

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

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 38px rgba(120, 53, 15, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(120, 53, 15, .2);
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--amber-100);
}

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

.card-link:hover .poster-wrap img {
  transform: scale(1.08);
}

.card-badge,
.card-score {
  position: absolute;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.card-badge {
  left: 12px;
  background: rgba(146, 64, 14, .9);
}

.card-score {
  right: 12px;
  background: rgba(239, 68, 68, .92);
}

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

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

.card-meta {
  margin: 0 0 10px;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 800;
}

.card-desc {
  flex: 1;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.scroll-shell,
.rank-panel,
.intro-panel {
  border-radius: 32px;
  background: linear-gradient(135deg, var(--amber-100), #fff7ed);
  box-shadow: var(--shadow);
}

.scroll-shell {
  padding: 28px;
}

.compact-title {
  align-items: center;
}

.scroll-actions {
  display: flex;
  gap: 10px;
}

.scroll-actions button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--amber-900);
  background: white;
  box-shadow: 0 12px 26px rgba(120, 53, 15, .16);
  font-size: 28px;
}

.movie-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 300px);
  gap: 22px;
  overflow-x: auto;
  padding: 5px 4px 16px;
  scroll-behavior: smooth;
}

.movie-row::-webkit-scrollbar,
.category-chips::-webkit-scrollbar {
  height: 8px;
}

.movie-row::-webkit-scrollbar-thumb,
.category-chips::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(180, 83, 9, .35);
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding-top: 70px;
}

.rank-panel,
.intro-panel {
  padding: 28px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  transition: transform .2s ease, background .2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  background: #ffffff;
}

.rank-no {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: white;
  background: var(--amber-700);
  font-weight: 950;
}

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

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy strong {
  color: #111827;
}

.rank-copy em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-heat {
  color: var(--amber-700);
  font-weight: 900;
}

.intro-copy h2 {
  margin: 0 0 18px;
  color: var(--amber-900);
  font-size: clamp(30px, 4vw, 48px);
}

.intro-copy p {
  color: var(--amber-800);
  line-height: 1.8;
}

.intro-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.intro-images a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(120, 53, 15, .16);
}

.intro-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.category-card,
.overview-link {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.category-card {
  grid-template-columns: 160px 1fr;
  min-height: 170px;
}

.category-card:hover,
.overview-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 62px rgba(120, 53, 15, .2);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card div,
.overview-body {
  padding: 22px;
}

.category-card h3,
.overview-body h2 {
  margin: 0 0 10px;
  color: var(--amber-900);
}

.category-card p,
.overview-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: #fff7ed;
  background-position: center;
  background-size: cover;
}

.small-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, .38), transparent 30%),
    linear-gradient(120deg, var(--amber-900), var(--amber-700));
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 820px;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255, 251, 235, .86);
  font-weight: 800;
}

.crumb a:hover {
  color: #fde68a;
}

.overview-link {
  height: 100%;
}

.overview-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 210px;
  background: var(--amber-100);
}

.overview-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-body span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--amber-700);
  font-weight: 900;
}

.full-rank {
  background: white;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff7ed;
}

.detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 52px;
  min-height: 560px;
  padding: 60px 0;
}

.detail-copy h1 {
  margin-bottom: 18px;
}

.detail-poster {
  padding: 12px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding-top: 54px;
}

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

.player-card,
.detail-box,
.side-card {
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
}

.video-frame {
  position: relative;
  background: #000;
}

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

.play-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: var(--amber-700);
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .46));
  transition: background .2s ease, opacity .2s ease, visibility .2s ease;
}

.play-cover span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
  font-size: 38px;
  text-indent: 5px;
}

.play-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-box {
  margin-top: 24px;
  padding: 28px;
}

.detail-box h2,
.side-card h2 {
  margin: 0 0 16px;
  color: var(--amber-900);
}

.detail-box p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
}

.side-card {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.side-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 18px;
}

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

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border-radius: 14px;
  background: var(--amber-50);
}

.meta-list span {
  color: var(--muted);
}

.meta-list strong {
  color: var(--amber-900);
  text-align: right;
}

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

.site-footer {
  margin-top: 80px;
  color: #fff7ed;
  background: linear-gradient(180deg, var(--amber-800), var(--amber-900));
}

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

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 251, 235, .76);
  line-height: 1.8;
}

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

.site-footer a:hover {
  color: #fde68a;
}

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(254, 243, 199, .18);
  color: rgba(255, 251, 235, .7);
  text-align: center;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: white;
  background: var(--amber-700);
  box-shadow: var(--shadow);
  font-size: 22px;
}

.back-top.is-visible {
  display: block;
}

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

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-carousel {
    height: auto;
    min-height: 720px;
  }

  .hero-slide {
    position: relative;
    display: none;
    min-height: 720px;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-content {
    padding: 64px 0 96px;
  }

  .detail-poster,
  .detail-side {
    max-width: 360px;
  }

  .detail-side {
    order: -1;
  }

  .side-card {
    position: static;
  }

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

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

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

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

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

  .hero-copy h1,
  .hero-copy h2,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-search,
  .page-filter,
  .search-page-form {
    flex-direction: column;
  }

  .hero-search button,
  .page-filter button {
    min-height: 48px;
  }

  .section-title {
    display: block;
  }

  .section-title > a {
    display: inline-flex;
    margin-top: 16px;
  }

  .movie-grid,
  .related-grid,
  .category-grid,
  .overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    grid-template-columns: 120px 1fr;
  }

  .rank-item {
    grid-template-columns: 36px 48px minmax(0, 1fr);
  }

  .rank-heat {
    display: none;
  }

  .intro-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
