:root {
  --bg: #0f172a;
  --bg-2: #020617;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --gold: #fde047;
  --gold-2: #eab308;
  --purple: #7c3aed;
  --pink: #ec4899;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.35), transparent 36rem), linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(88, 28, 135, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #111827;
  background: linear-gradient(135deg, var(--gold), #fff7ad);
  border-radius: 13px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(234, 179, 8, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(12deg) scale(1.05);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-size: 21px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold), #fff7ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 12px;
}

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

.nav-link {
  color: #e2e8f0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--gold);
}

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

.header-search input,
.mobile-search input,
.filter-input {
  width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  outline: none;
  padding: 10px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus {
  border-color: rgba(253, 224, 71, 0.76);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(253, 224, 71, 0.12);
}

.header-search button,
.mobile-search button {
  border: 0;
  color: #111827;
  background: var(--gold);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 9px 12px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-panel-inner {
  display: grid;
  gap: 14px;
  padding: 16px 0 20px;
}

.mobile-link {
  color: #e2e8f0;
}

.hero {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transform: scale(1.02);
}

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

.hero-bg,
.hero-bg img,
.hero-gradient-one,
.hero-gradient-two {
  position: absolute;
  inset: 0;
}

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

.hero-gradient-one {
  background: linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.74) 45%, rgba(15, 23, 42, 0.12) 100%);
}

.hero-gradient-two {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.52) 48%, rgba(15, 23, 42, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(660px, 100%);
  padding-top: 28px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  margin-right: 8px;
  background: var(--gold);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 950;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.hero p {
  margin: 0 0 26px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-meta,
.detail-meta,
.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span,
.poster-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
}

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

.center-actions {
  justify-content: center;
}

.small-actions {
  margin-top: 20px;
}

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

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

.btn-primary {
  color: #111827;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 36px rgba(234, 179, 8, 0.26);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--gold);
}

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

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

.section-head.compact {
  align-items: center;
}

.section-head h2,
.page-hero h1,
.detail-info-panel h1,
.detail-aside h2,
.cta-panel h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 950;
}

.section-more {
  color: var(--gold);
  font-weight: 800;
}

.feature-rail {
  display: flex;
  gap: 24px;
  padding-bottom: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.feature-rail::-webkit-scrollbar,
.category-movie-grid::-webkit-scrollbar {
  height: 8px;
}

.feature-rail::-webkit-scrollbar-thumb,
.category-movie-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.feature-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.feature-card a,
.movie-card-link,
.mini-card a,
.rank-row a,
.ranking-card a,
.category-overview-card,
.category-tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card a:hover,
.movie-card-link:hover,
.mini-card a:hover,
.rank-row a:hover,
.ranking-card a:hover,
.category-overview-card:hover,
.category-tile:hover {
  transform: translateY(-5px);
  background: var(--card-strong);
  border-color: rgba(253, 224, 71, 0.38);
  box-shadow: var(--shadow);
}

.feature-poster,
.poster-frame,
.ranking-poster,
.category-cover,
.mini-poster,
.rank-thumb {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.feature-poster {
  display: block;
  aspect-ratio: 16 / 10;
}

.feature-poster img,
.poster-frame img,
.mini-poster img,
.rank-thumb img,
.ranking-poster img,
.category-tile img,
.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feature-card a:hover img,
.movie-card-link:hover img,
.mini-card a:hover img,
.rank-row a:hover img,
.ranking-card a:hover img,
.category-tile:hover img,
.category-cover:hover img {
  transform: scale(1.08);
}

.feature-overlay,
.poster-shade,
.category-tile-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.72) 100%);
}

.feature-copy {
  display: grid;
  gap: 7px;
  padding: 18px;
}

.feature-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.feature-copy strong,
.movie-card-body strong,
.mini-copy strong,
.rank-copy strong,
.ranking-copy strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
}

.feature-copy span:last-child,
.movie-line,
.mini-copy span,
.rank-copy em,
.ranking-copy em,
.category-overview-copy p {
  color: var(--muted);
}

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

.category-tile {
  min-height: 168px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
}

.category-tile img,
.category-tile-glow {
  position: absolute;
  inset: 0;
}

.category-tile-glow {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.86), rgba(236, 72, 153, 0.76));
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 950;
}

.category-tile em {
  max-width: 160px;
  color: #f8fafc;
  font-size: 13px;
  font-style: normal;
}

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

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

.movie-card-link {
  height: 100%;
}

.poster-frame {
  display: block;
  aspect-ratio: 2 / 3;
}

.poster-shade {
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.36);
  transition: opacity 0.22s ease;
}

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

.play-badge,
.player-play {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #111827;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(253, 224, 71, 0.26);
}

.poster-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #111827;
  background: var(--gold);
  border: 0;
  font-weight: 900;
}

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-line {
  min-height: 44px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.movie-meta span {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
}

.home-ranking {
  min-width: 0;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 42px 76px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
}

.rank-number {
  color: var(--gold);
  font-size: 30px;
  font-weight: 950;
  text-align: center;
}

.rank-thumb {
  width: 76px;
  height: 58px;
  border-radius: 12px;
}

.rank-copy,
.ranking-copy,
.mini-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.rank-copy em,
.ranking-copy em,
.mini-copy span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: normal;
  font-size: 13px;
}

.rank-score,
.ranking-mark {
  color: #111827;
  background: var(--gold);
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 950;
  text-align: center;
}

.cta-panel,
.page-hero {
  margin-top: 48px;
  padding: 46px;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.52), rgba(236, 72, 153, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-panel p,
.page-hero p {
  width: min(760px, 100%);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

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

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

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

.category-cover {
  display: block;
  height: 210px;
  border-radius: 18px;
}

.category-cover span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #111827;
  background: var(--gold);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
}

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

.category-sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-sample-links a,
.tag-cloud a,
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0 14px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-sample-links a:hover,
.tag-cloud a:hover,
.filter-chip:hover,
.filter-chip.is-active {
  color: #111827;
  background: var(--gold);
  border-color: var(--gold);
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.filter-input {
  width: 100%;
  border-radius: 18px;
  padding: 14px 18px;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border-radius: 999px;
}

.category-movie-grid,
.search-movie-grid {
  padding-top: 32px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ranking-list-page {
  display: grid;
  gap: 16px;
  padding-top: 32px;
}

.ranking-card a {
  display: grid;
  grid-template-columns: 64px 130px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 20px;
  padding: 16px;
}

.ranking-index {
  color: var(--gold);
  font-size: 36px;
  font-weight: 950;
  text-align: center;
}

.ranking-poster {
  width: 130px;
  height: 82px;
  border-radius: 16px;
}

.ranking-copy span {
  color: var(--soft);
  font-size: 13px;
}

.detail-main {
  padding-top: 32px;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.18), rgba(0, 0, 0, 0.68));
  transition: opacity 0.2s ease;
}

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

.player-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.detail-info-panel {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.detail-info-panel h1 {
  margin: 0;
}

.detail-lead {
  margin: 0;
  color: #f8fafc;
  font-size: 20px;
  line-height: 1.75;
}

.detail-info-panel section h2,
.detail-aside h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 950;
}

.detail-info-panel section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

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

.detail-aside {
  position: sticky;
  top: 98px;
  align-self: start;
}

.detail-related {
  display: grid;
  gap: 14px;
}

.mini-card a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
}

.mini-poster {
  width: 120px;
  height: 78px;
  border-radius: 14px;
}

.mini-copy em {
  color: var(--soft);
  font-style: normal;
  font-size: 12px;
}

.site-footer {
  margin-top: 86px;
  padding: 48px 0 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(2, 6, 23, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: inline-flex;
  color: var(--gold);
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 10px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
}

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

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 40;
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  color: #111827;
  background: var(--gold);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.back-top.is-visible {
  display: grid;
  place-items: center;
}

.is-hidden-by-filter {
  display: none !important;
}

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

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

  .detail-aside {
    position: static;
  }
}

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

  .mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero {
    min-height: 600px;
  }

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

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

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

  .category-cover {
    height: 240px;
  }

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

  .ranking-card a {
    grid-template-columns: 44px 92px minmax(0, 1fr);
  }

  .ranking-mark {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .header-inner {
    min-height: 68px;
  }

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

  .brand-subtitle {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 84px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .section-block {
    padding-top: 52px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-card {
    flex-basis: 280px;
  }

  .movie-grid,
  .home-grid,
  .category-movie-grid,
  .search-movie-grid {
    gap: 16px;
  }

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

  .movie-card-body strong {
    font-size: 16px;
  }

  .movie-line {
    min-height: 40px;
    font-size: 13px;
  }

  .rank-row a {
    grid-template-columns: 34px 64px minmax(0, 1fr);
  }

  .rank-score {
    display: none;
  }

  .page-hero,
  .cta-panel {
    margin-top: 28px;
    padding: 30px 18px;
    border-radius: 22px;
  }

  .page-hero p,
  .cta-panel p {
    font-size: 15px;
  }

  .ranking-card a {
    grid-template-columns: 36px 80px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .ranking-poster {
    width: 80px;
    height: 64px;
  }

  .ranking-index {
    font-size: 26px;
  }

  .detail-main {
    padding-top: 18px;
  }

  .detail-info-panel {
    padding: 20px;
  }

  .detail-info-panel h1 {
    font-size: 30px;
  }

  .detail-lead {
    font-size: 17px;
  }

  .mini-card a {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .mini-poster {
    width: 100px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
