:root {
  --bg: #ffffff;
  --bg-soft: #fafaf9;
  --bg-warm: #f5f5f4;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e7e5e4;
  --amber: #d97706;
  --amber-dark: #b45309;
  --amber-soft: #fffbeb;
  --stone: #f5f5f4;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(250, 250, 249, 0.94);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.28);
  font-size: 13px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 9px 16px;
  border-radius: 12px;
  color: #334155;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-dark);
  background: rgba(255, 251, 235, 0.86);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #1e293b;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: #111827;
}

.hero-stage {
  position: relative;
  min-height: 72vh;
  height: 720px;
  max-height: 880px;
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(245, 158, 11, 0.25), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42) 50%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 45%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100% - var(--max)) / 2));
  width: min(680px, calc(100% - 48px));
  transform: translateY(-44%);
  color: #ffffff;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  line-height: 1.06;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero-content h1 {
  font-size: clamp(30px, 5vw, 62px);
  margin-bottom: 14px;
}

.hero-content h2 {
  font-size: clamp(26px, 4vw, 52px);
  margin-bottom: 18px;
}

.hero-summary {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(16px, 2vw, 20px);
}

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

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.28);
}

.btn-primary:hover {
  background: var(--amber-dark);
}

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

.btn-plain {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-ghost-dark {
  background: var(--amber-soft);
  color: var(--amber-dark);
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 12px;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.30);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 34px;
  display: flex;
  gap: 9px;
  z-index: 4;
}

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

.hero-dot.is-active {
  width: 54px;
  background: #fbbf24;
}

.search-band,
.content-section,
.filter-panel,
.player-section,
.story-section,
.ranking-page-list,
.overview-stack {
  width: min(var(--max), calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.search-band {
  margin-top: -48px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(231, 229, 228, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-band p,
.search-band h2 {
  margin: 0;
}

.search-band p {
  color: var(--amber-dark);
  font-weight: 800;
}

.search-band h2 {
  font-size: clamp(22px, 3vw, 34px);
}

.quick-search,
.filter-row {
  display: flex;
  gap: 12px;
}

.quick-search input,
.filter-row input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quick-search input:focus,
.filter-row input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.quick-search button {
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: var(--amber);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.content-section {
  padding: 68px 0 0;
}

.section-heading,
.category-overview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2,
.category-overview-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.section-heading p,
.category-overview-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  flex: 0 0 auto;
  color: var(--amber-dark);
  font-weight: 800;
}

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

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

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.28);
  box-shadow: var(--shadow);
}

.card-cover {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 2 / 3;
  background: #1f2937;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .card-cover img {
  transform: scale(1.05);
}

.card-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.94);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card-meta a {
  color: var(--amber-dark);
}

.card-body h3 {
  margin: 9px 0 7px;
  font-size: 18px;
  line-height: 1.32;
}

.card-body h3 a:hover,
.ranking-info h2 a:hover {
  color: var(--amber-dark);
}

.card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.card-tags span {
  background: var(--amber-soft);
  color: var(--amber-dark);
  backdrop-filter: none;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 206px;
}

.movie-card-horizontal .card-cover {
  aspect-ratio: auto;
  height: 100%;
}

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

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

.category-tile {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 32%),
    linear-gradient(135deg, #ffffff, #fafaf9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-tile span {
  display: block;
  color: var(--amber-dark);
  font-weight: 900;
}

.category-tile strong {
  display: block;
  margin-top: 8px;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.35;
}

.category-tile div {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.category-tile div a {
  color: var(--muted);
  font-size: 14px;
}

.category-tile div a:hover {
  color: var(--amber-dark);
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ranking-list li a {
  display: grid;
  grid-template-columns: 54px 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-list li a:hover {
  border-color: rgba(217, 119, 6, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.rank-number {
  color: var(--amber-dark);
  font-size: 24px;
  font-weight: 900;
}

.ranking-list img {
  width: 64px;
  height: 84px;
  border-radius: 12px;
  object-fit: cover;
  background: #1f2937;
}

.rank-title {
  font-weight: 900;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  min-height: 330px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 15%, rgba(245, 158, 11, 0.30), transparent 34%),
    linear-gradient(135deg, #1f2937, #0f172a);
  color: #ffffff;
}

.page-hero > div {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.filter-panel {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.filter-panel label {
  display: block;
  margin-bottom: 10px;
  color: #334155;
  font-weight: 900;
}

.category-list-section,
.search-results-section {
  padding-top: 42px;
}

.empty-state {
  display: none;
  margin: 26px 0;
  padding: 24px;
  border-radius: 18px;
  background: var(--stone);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

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

.overview-stack {
  display: grid;
  gap: 26px;
  padding: 46px 0 20px;
}

.category-overview-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

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

.ranking-page-list {
  display: grid;
  gap: 14px;
  padding: 34px 0 20px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 72px 90px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.ranking-position {
  color: var(--amber-dark);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.ranking-thumb img {
  width: 90px;
  height: 122px;
  border-radius: 14px;
  object-fit: cover;
  background: #1f2937;
}

.ranking-info h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.ranking-info p {
  margin: 0 0 10px;
  color: var(--muted);
}

.detail-main {
  background: #ffffff;
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) saturate(1.08);
  transform: scale(1.03);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 158, 11, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.98), transparent 50%);
}

.detail-shell {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

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

.detail-copy h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.player-section {
  padding: 64px 0 0;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.72));
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-symbol {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 18px 38px rgba(217, 119, 6, 0.38);
  font-size: 32px;
  text-indent: 4px;
}

.story-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 42px 0 0;
}

.story-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fafaf9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.story-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

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

.related-section {
  padding-bottom: 30px;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fafaf9, #e7e5e4);
}

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

.footer-brand p {
  max-width: 420px;
  color: var(--muted);
}

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

.footer-links h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.footer-links div {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--amber-dark);
}

.copyright {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(120, 113, 108, 0.22);
  color: #78716c;
  text-align: center;
  font-size: 14px;
}

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

  .detail-layout {
    grid-template-columns: 240px 1fr;
    gap: 30px;
  }

  .overview-samples {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-menu.is-open {
    display: flex;
  }

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

  .hero-stage {
    min-height: 760px;
    height: 86vh;
  }

  .hero-content {
    top: 54%;
  }

  .hero-control {
    top: auto;
    bottom: 34px;
    transform: none;
  }

  .hero-control:hover {
    transform: scale(1.06);
  }

  .hero-dots {
    right: 50%;
    bottom: 48px;
    transform: translateX(50%);
  }

  .search-band,
  .section-heading,
  .category-overview-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .search-band {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .quick-search,
  .filter-row {
    flex-direction: column;
  }

  .movie-grid,
  .category-grid,
  .ranking-list,
  .story-section,
  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .ranking-row {
    grid-template-columns: 52px 76px 1fr;
  }

  .ranking-row .btn {
    grid-column: 2 / 4;
  }
}

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

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

  .hero-stage {
    min-height: 700px;
  }

  .hero-content {
    left: 16px;
    width: calc(100% - 32px);
  }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .movie-grid,
  .category-grid,
  .ranking-list,
  .story-section,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 112px 1fr;
    min-height: 168px;
  }

  .movie-card-horizontal .card-body {
    padding: 12px;
  }

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

  .card-tags {
    display: none;
  }

  .ranking-list li a,
  .ranking-row {
    grid-template-columns: 48px 70px 1fr;
    gap: 10px;
  }

  .rank-meta {
    display: none;
  }

  .detail-shell {
    padding-top: 106px;
  }

  .player-section,
  .story-section,
  .content-section {
    padding-top: 42px;
  }
}
