:root {
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fde68a;
  --amber: #f59e0b;
  --orange: #f97316;
  --red: #ef4444;
  --green: #10b981;
  --blue: #06b6d4;
  --shadow: 0 18px 50px rgba(146, 64, 14, 0.13);
  --radius: 22px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.22), transparent 28rem),
    linear-gradient(135deg, #fffbeb 0%, #fff7ed 48%, #fffbeb 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #111827;
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.38);
}

.nav-shell {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

.brand-name,
.footer-brand {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #d97706, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-weight: 650;
  color: #374151;
}

.nav-link {
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d97706;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: #fff7ed;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #92400e;
}

.hero {
  position: relative;
  height: min(720px, 72vh);
  min-height: 520px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.06)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent 42%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-copy {
  width: min(650px, 92vw);
  color: #fff;
  padding-top: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fbbf24;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "★";
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
}

.hero-meta,
.detail-meta,
.movie-tags,
.category-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-meta {
  margin-bottom: 1.7rem;
}

.hero-meta span,
.detail-meta span,
.category-pills a,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 650;
  font-size: 0.85rem;
}

.hero-meta span {
  color: #fff;
  background: rgba(245, 158, 11, 0.86);
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.8rem 1.3rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  box-shadow: 0 18px 32px rgba(249, 115, 22, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 44px rgba(249, 115, 22, 0.34);
}

.btn.light {
  color: #92400e;
  background: #fff7ed;
  box-shadow: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 1.5rem;
}

.hero-next {
  right: 1.5rem;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: #fff;
}

.page {
  padding: 3.5rem 0;
}

.stack {
  display: grid;
  gap: 4rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.2;
}

.section-title::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
}

.section-desc {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0.65rem 0 0;
}

.link-more {
  color: #d97706;
  font-weight: 800;
  white-space: nowrap;
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 330px);
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.2rem;
  scroll-snap-type: x proximity;
}

.scroller .movie-card {
  scroll-snap-align: start;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 4px 20px rgba(146, 64, 14, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.movie-card.small .movie-body p,
.movie-card.tiny .movie-body p {
  display: none;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #ffedd5);
}

.movie-card.wide .movie-poster {
  aspect-ratio: 16 / 10;
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.type-pill,
.year-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  backdrop-filter: blur(8px);
}

.type-pill {
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(245, 158, 11, 0.9);
}

.year-pill {
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(0, 0, 0, 0.66);
}

.rank-badge {
  top: 0.75rem;
  left: 0.75rem;
  min-width: 2.2rem;
  text-align: center;
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.movie-body {
  padding: 1rem;
}

.movie-body h2,
.movie-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  line-height: 1.4;
}

.movie-body h2 a,
.movie-body h3 a {
  transition: color 0.2s ease;
}

.movie-body h2 a:hover,
.movie-body h3 a:hover {
  color: #d97706;
}

.movie-body p {
  display: -webkit-box;
  min-height: 3em;
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-tags {
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.movie-tags span {
  padding: 0.25rem 0.55rem;
  color: #92400e;
  background: #fff7ed;
  font-size: 0.75rem;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  color: #78716c;
  font-size: 0.78rem;
}

.feature-box {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

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

.category-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid rgba(251, 191, 36, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.28), transparent 7rem),
    #fff;
  box-shadow: 0 8px 30px rgba(146, 64, 14, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card h2,
.category-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-card strong {
  color: #d97706;
}

.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.86), rgba(146, 64, 14, 0.74)),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.5), transparent 18rem);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
}

.category-pills {
  margin-top: 1.25rem;
}

.category-pills a {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-panel {
  position: sticky;
  top: 82px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 0.9rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
  backdrop-filter: blur(16px);
}

.filter-panel label {
  display: grid;
  gap: 0.35rem;
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 44px;
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: 0 1rem;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

.empty-state {
  display: none;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border-radius: 22px;
}

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

.rank-list {
  display: grid;
  gap: 0.8rem;
}

.rank-row {
  display: grid;
  grid-template-columns: 48px 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.rank-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.rank-row img {
  width: 112px;
  height: 72px;
  border-radius: 13px;
  object-fit: cover;
  background: #fef3c7;
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}

.rank-info strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info em,
.rank-info small {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.rank-info small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-go {
  color: #d97706;
  font-weight: 900;
}

.detail-shell {
  padding: 2.2rem 0 3.5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-weight: 750;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 32px;
  color: #fff;
  background: #111827;
  box-shadow: var(--shadow);
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.64), rgba(17, 24, 39, 0.2)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.65), transparent 45%);
}

.detail-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.detail-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 5.6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.detail-content p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  font-size: 1.06rem;
}

.detail-meta {
  margin: 1.2rem 0 1.5rem;
}

.detail-meta span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.player-section,
.copy-section,
.related-section {
  margin-top: 2rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
  object-fit: contain;
}

.play-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 18rem),
    rgba(2, 6, 23, 0.45);
  cursor: pointer;
  z-index: 4;
}

.play-mask.is-hidden {
  display: none;
}

.play-mask span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 0.35rem;
  border-radius: 50%;
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease;
}

.play-mask:hover span {
  transform: scale(1.06);
}

.copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.4rem;
}

.copy-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(146, 64, 14, 0.08);
}

.copy-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.35rem;
}

.copy-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.95;
}

.side-card {
  display: grid;
  gap: 0.75rem;
}

.side-card a {
  display: flex;
  gap: 0.7rem;
  padding: 0.65rem;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(146, 64, 14, 0.12);
}

.side-card img {
  width: 72px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  background: #fef3c7;
  flex-shrink: 0;
}

.side-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.side-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(251, 191, 36, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
  gap: 2rem;
}

.site-footer p {
  max-width: 450px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  color: #6b7280;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 191, 36, 0.35);
  color: #78716c;
  font-size: 0.9rem;
}

.hidden-card {
  display: none !important;
}

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

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

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

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

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

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

  .nav-shell {
    height: 62px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid rgba(251, 191, 36, 0.45);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-link {
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .nav-link:hover,
  .nav-link.active {
    background: #fff7ed;
  }

  .nav-link.active::after,
  .nav-link:hover::after {
    display: none;
  }

  .hero {
    min-height: 580px;
    height: 76vh;
  }

  .hero-arrow {
    display: none;
  }

  .hero-copy {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.6rem);
  }

  .page {
    padding: 2.4rem 0;
  }

  .stack {
    gap: 2.8rem;
  }

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

  .movie-grid,
  .movie-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .movie-body {
    padding: 0.85rem;
  }

  .movie-body p,
  .movie-tags {
    display: none;
  }

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

  .filter-panel {
    position: static;
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 38px 82px minmax(0, 1fr);
  }

  .rank-row img {
    width: 82px;
    height: 62px;
  }

  .rank-go {
    display: none;
  }

  .detail-hero {
    min-height: 620px;
    border-radius: 24px;
  }

  .detail-hero::after {
    background:
      linear-gradient(0deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.35)),
      linear-gradient(90deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.18));
  }

  .detail-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

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

  .play-mask span {
    width: 72px;
    height: 72px;
    font-size: 2.15rem;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .movie-grid.compact {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 1.08rem;
  }
}
