:root {
  --green-950: #052e1b;
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50: #ecfdf5;
  --teal-700: #0f766e;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 36px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 26px 70px rgba(2, 44, 34, 0.22);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--slate-50), #ffffff 42%, var(--emerald-50));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-900), var(--green-700), var(--teal-700));
  box-shadow: 0 14px 28px rgba(6, 78, 59, 0.24);
}

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

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

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green-900);
  background: linear-gradient(135deg, #bbf7d0, #ffffff);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.brand-text {
  font-size: 1.15rem;
}

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

.desktop-nav a,
.mobile-panel a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: #d9f99d;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 250px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.header-search input,
.mobile-search input {
  min-width: 0;
  flex: 1;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 10px 14px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.header-search button,
.mobile-search button {
  color: var(--green-900);
  background: #d9f99d;
  border: 0;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

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

.mobile-panel {
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-panel nav {
  display: grid;
  gap: 12px;
  padding: 14px 0;
}

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

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-950), var(--green-800), var(--teal-700));
}

.hero-slider {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  filter: blur(3px) saturate(1.12);
  transform: scale(1.04);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 24%, rgba(16, 185, 129, 0.36), transparent 34%),
    linear-gradient(90deg, rgba(2, 44, 34, 0.94), rgba(4, 120, 87, 0.82) 48%, rgba(15, 118, 110, 0.68));
}

.hero-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(0deg, var(--slate-50), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.78fr);
  align-items: center;
  gap: 48px;
  padding: 84px 0 118px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 13px;
  color: #d9f99d;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  color: #86efac;
}

.hero p {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(240, 253, 244, 0.93);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--green-500);
  box-shadow: 0 18px 30px rgba(16, 185, 129, 0.28);
}

.primary-button:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(16, 185, 129, 0.35);
}

.secondary-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.23);
  transform: translateY(-2px);
}

.hero-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-feature-card:hover img {
  transform: scale(1.05);
}

.hero-card-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.hero-card-caption strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

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

.section {
  padding: 70px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--emerald-50), #ffffff);
}

.section-slate {
  background: linear-gradient(180deg, var(--slate-50), #ffffff);
}

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

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading p,
.page-hero p {
  margin: 9px 0 0;
  color: var(--slate-600);
}

.section-link {
  flex: 0 0 auto;
  color: var(--green-700);
  font-weight: 850;
}

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

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

.movie-card,
.movie-list-card,
.category-card,
.info-card,
.panel {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.82);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover,
.movie-list-card:hover,
.category-card:hover,
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.25);
}

.poster,
.list-poster,
.category-cover,
.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.35), transparent 28%),
    linear-gradient(135deg, var(--green-900), var(--teal-700));
}

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

.poster img,
.category-cover img,
.list-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.movie-card:hover .poster img,
.category-card:hover .category-cover img,
.movie-list-card:hover .list-poster img {
  transform: scale(1.065);
}

.image-frame.is-missing img {
  display: none;
}

.image-frame.is-missing::after {
  content: attr(data-fallback-title);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.95), rgba(15, 118, 110, 0.95));
}

.duration,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  color: var(--white);
  background: rgba(2, 6, 23, 0.76);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: rgba(16, 185, 129, 0.82);
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.card-kicker,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--slate-500);
  font-size: 0.82rem;
}

.card-kicker a,
.category-pill {
  color: var(--green-700);
  font-weight: 850;
}

.movie-card h3,
.movie-list-card h3 {
  margin: 10px 0 8px;
  color: var(--slate-900);
  font-size: 1.08rem;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.movie-list-card h3 a:hover {
  color: var(--green-700);
}

.movie-card p,
.movie-list-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 28px;
  margin-bottom: 12px;
}

.tag-row span,
.meta-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-size: 0.76rem;
  font-weight: 680;
}

.movie-list {
  display: grid;
  gap: 16px;
}

.movie-list-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
}

.list-poster {
  min-height: 132px;
  border-radius: 14px;
}

.list-content {
  align-self: center;
}

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

.category-card {
  display: grid;
  grid-template-rows: 180px 1fr;
}

.category-cover {
  height: 180px;
}

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

.category-card h3 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 1.35rem;
}

.category-card p {
  margin: 0 0 16px;
  color: var(--slate-600);
}

.count-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  color: var(--green-800);
  background: var(--emerald-100);
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.86rem;
}

.page-hero {
  padding: 58px 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.5), transparent 34%),
    linear-gradient(110deg, var(--green-900), var(--green-700), var(--teal-700));
}

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

.page-hero p {
  max-width: 760px;
  color: rgba(240, 253, 244, 0.9);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.stat-card {
  min-width: 150px;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.stat-card span {
  color: rgba(240, 253, 244, 0.8);
  font-size: 0.88rem;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px 160px;
  gap: 14px;
  align-items: center;
  margin: 0 0 26px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.86);
}

.filter-panel input,
.filter-panel select,
.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  outline: 0;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-box input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.result-count {
  margin: 0 0 18px;
  color: var(--slate-600);
  font-weight: 750;
}

.search-box {
  display: flex;
  gap: 12px;
  margin: 28px 0 0;
  max-width: 760px;
}

.search-box button {
  min-width: 120px;
  color: var(--white);
  background: var(--green-600);
  border: 0;
  border-radius: 12px;
  font-weight: 850;
  cursor: pointer;
}

.detail-page {
  padding: 38px 0 80px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--slate-500);
  font-size: 0.9rem;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.detail-sidebar,
.detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.detail-main {
  overflow: hidden;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #000000;
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(16, 185, 129, 0.22), transparent 28%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.2));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
}

.player-start {
  display: inline-grid;
  width: 84px;
  height: 84px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--green-500);
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  cursor: pointer;
  font-size: 2rem;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.35);
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: none;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.78);
  border-radius: 12px;
  font-size: 0.9rem;
}

.player-status.is-visible {
  display: block;
}

.detail-content {
  padding: 26px;
}

.detail-title {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.detail-meta,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.detail-section h2,
.detail-sidebar h2 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: 1.35rem;
}

.detail-section p {
  color: var(--slate-700);
}

.review-box {
  padding: 20px;
  border-left: 5px solid var(--green-500);
  border-radius: 16px;
  background: linear-gradient(90deg, var(--emerald-50), #ffffff);
}

.detail-sidebar {
  position: sticky;
  top: 92px;
  padding: 20px;
}

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

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

.related-item .image-frame {
  height: 70px;
  border-radius: 12px;
}

.related-item h3 {
  display: -webkit-box;
  margin: 0 0 4px;
  overflow: hidden;
  color: var(--slate-900);
  font-size: 0.95rem;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-item h3:hover {
  color: var(--green-700);
}

.related-item span {
  color: var(--slate-500);
  font-size: 0.78rem;
}

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

.rank-card {
  counter-increment: rank;
  position: relative;
  display: grid;
  grid-template-columns: 64px 160px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.rank-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--teal-700));
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 900;
}

.rank-thumb {
  height: 96px;
  border-radius: 14px;
}

.rank-content h3 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 1.1rem;
}

.rank-content p {
  margin: 0;
  color: var(--slate-600);
}

.rank-views {
  color: var(--green-700);
  font-weight: 900;
  white-space: nowrap;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(110deg, var(--green-800), var(--green-600), var(--teal-700));
}

.cta-band .section-heading h2,
.cta-band .section-heading p {
  color: var(--white);
}

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

.cta-stats .stat-card {
  text-align: center;
}

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

.info-card {
  padding: 26px;
}

.info-card h2,
.info-card h3 {
  margin-top: 0;
  color: var(--slate-900);
}

.info-card p,
.info-card li {
  color: var(--slate-600);
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-800), var(--slate-950));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 32px;
  padding: 54px 0 34px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  padding: 20px 16px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.no-results {
  display: none;
  padding: 36px;
  text-align: center;
  color: var(--slate-600);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.no-results.is-visible {
  display: block;
}

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

  .mobile-menu-toggle {
    display: block;
  }

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

  .hero-feature-card {
    display: none;
  }

  .detail-sidebar {
    position: static;
  }

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

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

  .rank-card {
    grid-template-columns: 52px 128px minmax(0, 1fr);
  }

  .rank-views {
    grid-column: 3;
  }
}

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

  .hero-slider {
    min-height: 560px;
  }

  .hero-content {
    padding: 72px 0 110px;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    display: block;
  }

  .section-link {
    display: inline-flex;
    margin-top: 12px;
  }

  .movie-grid,
  .movie-grid.featured-grid,
  .category-grid,
  .info-grid,
  .cta-stats {
    grid-template-columns: 1fr;
  }

  .movie-list-card,
  .related-item,
  .rank-card {
    grid-template-columns: 1fr;
  }

  .list-poster,
  .rank-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

  .search-box {
    display: grid;
  }

  .detail-content {
    padding: 20px;
  }

  .player-shell {
    min-height: 230px;
  }
}
