:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--green-50), var(--white) 42%, var(--gray-50));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
  box-shadow: 0 12px 26px rgba(21, 128, 61, 0.26);
}

.nav-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.13);
}

.brand-mark span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--white);
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-search {
  position: relative;
  display: flex;
  width: min(280px, 28vw);
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.nav-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 82px 10px 16px;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
}

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

.nav-search button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 16px;
  color: var(--green-700);
  border: 0;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 540px;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(34, 197, 94, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.54) 44%, rgba(0, 0, 0, 0.12));
}

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

.hero-copy {
  max-width: 720px;
  color: var(--white);
}

.hero-tags,
.hero-meta,
.movie-meta,
.tag-row,
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags a,
.hero-tags span,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags a,
.hero-tags span {
  padding: 6px 16px;
  color: var(--white);
  background: var(--green-600);
}

.hero h1 {
  margin: 18px 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-meta {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-meta span {
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-meta span:last-child {
  border-right: 0;
}

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

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

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

.btn-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 14px 26px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  background: var(--green-700);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-light {
  color: var(--green-700);
  background: var(--white);
}

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

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

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

.section,
.detail-section {
  padding: 64px 0;
}

.soft-section {
  padding: 64px 0;
  background: var(--green-50);
}

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

.section-head.compact {
  align-items: center;
  margin-bottom: 20px;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.content-card h2,
.side-card h2 {
  margin: 0;
  color: var(--gray-900);
  line-height: 1.18;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.section-link {
  color: var(--green-700);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-800), var(--gray-900));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.62));
}

.score-badge,
.play-badge {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.score-badge {
  top: 12px;
  right: 12px;
  min-width: 48px;
  height: 28px;
  color: #92400e;
  background: #fef3c7;
}

.play-badge {
  left: 12px;
  bottom: 12px;
  height: 30px;
  padding: 0 14px;
  color: var(--white);
  background: var(--green-600);
}

.movie-info {
  padding: 18px;
}

.movie-kicker {
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
}

.movie-info h3 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
}

.movie-info p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span {
  display: inline-flex;
  align-items: center;
}

.movie-meta span + span::before {
  width: 4px;
  height: 4px;
  margin-right: 10px;
  content: "";
  border-radius: 999px;
  background: var(--gray-300);
}

.tag-row {
  margin-top: 14px;
}

.tag {
  padding: 5px 10px;
  color: var(--gray-700);
  background: var(--gray-100);
}

.large-card .poster-link {
  aspect-ratio: 16 / 9;
}

.wide-card {
  width: 320px;
  flex: 0 0 auto;
}

.horizontal-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

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

.metric-band {
  padding: 56px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  text-align: center;
}

.metric-grid div {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
}

.metric-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 36px;
  line-height: 1;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.86);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 32px;
}

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

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

.category-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-700);
  border-radius: 14px;
  background: var(--green-100);
  font-weight: 900;
}

.category-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.category-samples {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.category-samples a {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 700;
}

.ranking-panel,
.side-card,
.content-card,
.filter-card,
.ranking-table {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ranking-panel,
.side-card,
.content-card,
.filter-card {
  padding: 24px;
}

.rank-list,
.related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rank-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.rank-row b {
  color: var(--green-700);
  font-size: 20px;
}

.rank-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.rank-item img {
  width: 96px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-100);
}

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

.rank-text strong {
  overflow: hidden;
  color: var(--gray-900);
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
}

.cta-card {
  text-align: center;
  color: var(--white);
}

.cta-card h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-card p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.page-hero {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(90deg, var(--green-700), var(--green-500));
}

.page-hero .section-eyebrow,
.page-hero h1,
.page-hero p,
.page-hero a {
  color: var(--white);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 52px);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.breadcrumb a {
  font-weight: 800;
}

.filter-card {
  margin-bottom: 26px;
}

.filter-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  margin-bottom: 18px;
}

.filter-line label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 800;
}

.filter-line input,
.filter-line select,
.hero-search input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: var(--gray-900);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  outline: none;
  background: var(--white);
}

.filter-line input:focus,
.filter-line select:focus,
.hero-search input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.filter-pill {
  padding: 8px 16px;
  color: var(--gray-700);
  border: 0;
  border-radius: 999px;
  background: var(--gray-100);
  cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
  color: var(--white);
  background: var(--green-600);
}

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

.detail-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-900);
}

.detail-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 48%);
}

.detail-hero-inner {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
}

.detail-title-card {
  max-width: 820px;
}

.detail-title-card .section-eyebrow,
.detail-title-card h1,
.detail-title-card p {
  color: var(--white);
}

.detail-title-card h1 {
  margin: 8px 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
}

.detail-title-card p {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

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

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000000;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.28), rgba(0, 0, 0, 0.52));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-play {
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-600);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.38);
}

.player-play::before {
  width: 0;
  height: 0;
  margin-left: 6px;
  content: "";
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid var(--white);
}

.content-card {
  margin-top: 24px;
}

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

.content-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.9;
}

.strong-meta {
  margin-top: 8px;
  color: var(--gray-600);
}

.rating-card {
  min-width: 74px;
  padding: 10px 12px;
  text-align: center;
  border-radius: 14px;
  background: #fef3c7;
}

.rating-card strong {
  display: block;
  color: #92400e;
  font-size: 24px;
  line-height: 1;
}

.rating-card span {
  color: #a16207;
  font-size: 12px;
  font-weight: 800;
}

.detail-tags {
  margin: 0 0 20px;
}

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

.sticky-card {
  position: sticky;
  top: 88px;
}

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

.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.top-rank-card {
  position: relative;
}

.top-rank-card > b {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  padding: 8px 14px;
  color: var(--white);
  border-radius: 999px;
  background: var(--green-600);
  box-shadow: var(--shadow-sm);
}

.ranking-table {
  overflow: hidden;
}

.ranking-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}

.ranking-line:last-child {
  border-bottom: 0;
}

.ranking-line > span {
  color: var(--green-700);
  font-size: 22px;
  font-weight: 900;
}

.ranking-line > em {
  color: var(--gray-500);
  font-style: normal;
  text-align: right;
}

.hero-search {
  position: relative;
  max-width: 720px;
  margin-top: 28px;
}

.hero-search input {
  height: 58px;
  padding-right: 122px;
  border: 0;
}

.hero-search button {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 46px;
  padding: 0 26px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--green-600);
  cursor: pointer;
}

.search-summary {
  margin-bottom: 26px;
  color: var(--gray-600);
  font-weight: 700;
}

.site-footer {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding: 56px 0;
}

.footer-brand {
  margin-bottom: 16px;
  font-size: 20px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

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

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 16px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .four-col,
  .overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .sticky-card {
    position: static;
  }
}

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

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 16px 22px;
    background: var(--green-700);
    box-shadow: 0 16px 28px rgba(20, 83, 45, 0.25);
  }

  .nav-panel.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-search {
    width: 100%;
  }

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

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

  .hero-overlay,
  .detail-bg-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.48));
  }

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

  .four-col,
  .three-col,
  .category-grid,
  .overview-grid,
  .top-rank-grid,
  .related-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ranking-line > em {
    text-align: left;
  }
}

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

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

  .hero h1,
  .detail-title-card h1 {
    font-size: 38px;
  }

  .hero-copy,
  .detail-title-card {
    padding-top: 36px;
  }

  .hero-actions,
  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-meta span {
    border-right: 0;
  }

  .four-col,
  .three-col,
  .category-grid,
  .overview-grid,
  .top-rank-grid,
  .related-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .detail-section,
  .soft-section {
    padding: 44px 0;
  }

  .movie-info {
    padding: 16px;
  }

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

  .rank-item img {
    width: 86px;
    height: 56px;
  }

  .player-play {
    width: 68px;
    height: 68px;
  }
}
