:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --blue-600: #2563eb;
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.22);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(135deg, var(--slate-50), var(--slate-100));
  color: var(--slate-800);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--slate-800), var(--slate-900));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.28);
}

.header-inner {
  width: min(100% - 32px, var(--max-width));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.18);
  color: var(--orange-400);
}

.logo-text {
  font-size: 1.18rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.nav-link {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--orange-400);
  transform: translateY(-1px);
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.mobile-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 12px 24px 18px;
  background: var(--slate-900);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.mobile-link {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-800), var(--slate-900));
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.82)), var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.92;
  transform: scale(1.04);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--slate-50), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  max-width: 760px;
  color: var(--white);
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange-400);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 700px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

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

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

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

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.34);
}

.btn-primary:hover {
  background: var(--orange-600);
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 120px;
  z-index: 5;
  width: min(100% - 32px, var(--max-width));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--orange-500);
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 8;
  width: min(100% - 32px, 780px);
  padding: 10px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(16px);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.hero-search label {
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.hero-search button,
.search-page-form button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--orange-500);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  padding: 0 22px;
}

.section,
.category-band,
.detail-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 70px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max-width)) / 2));
  padding-right: max(16px, calc((100% - var(--max-width)) / 2));
  background: rgba(241, 245, 249, 0.84);
}

.category-band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max-width)) / 2));
  padding-right: max(16px, calc((100% - var(--max-width)) / 2));
  background: linear-gradient(90deg, var(--slate-800), var(--slate-900));
  color: var(--white);
}

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

.section-head h2,
.page-hero h1,
.detail-card h2,
.side-card h2 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-head-dark h2 {
  color: var(--white);
}

.section-link {
  color: var(--orange-600);
  font-weight: 800;
}

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

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

.movie-card {
  min-width: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.card-link {
  display: grid;
  height: 100%;
}

.poster-frame {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.movie-grid-featured .poster-frame {
  min-height: 290px;
}

.poster-frame img,
.related-thumb img,
.rank-thumb img,
.poster-side-card img,
.category-overview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .poster-frame img,
.rank-row:hover .rank-thumb img,
.related-card:hover .related-thumb img {
  transform: scale(1.08);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.46), transparent 55%);
  pointer-events: none;
}

.corner-badge,
.duration-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
}

.corner-badge {
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--orange-500);
}

.duration-badge {
  right: 12px;
  bottom: 12px;
  padding: 4px 9px;
  background: rgba(2, 6, 23, 0.75);
}

.play-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%) scale(0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.92);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-meta,
.movie-card-foot,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--slate-500);
  font-size: 0.86rem;
}

.movie-card h3 {
  margin: 0;
  color: var(--slate-800);
  font-size: 1.05rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-card-foot {
  justify-content: space-between;
  margin-top: 4px;
}

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

.category-card {
  position: relative;
  min-height: 168px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.24s ease, background 0.24s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.2)), var(--category-image);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(249, 115, 22, 0.82);
}

.category-card:hover::before {
  opacity: 0.35;
  transform: scale(1.08);
}

.category-card > * {
  position: relative;
  z-index: 1;
  display: block;
}

.category-icon {
  margin-bottom: 18px;
  font-size: 2.4rem;
}

.category-card strong {
  font-size: 1.22rem;
}

.category-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

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

.rank-row {
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.rank-link {
  display: grid;
  grid-template-columns: 58px 116px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
}

.rank-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-700);
  font-weight: 900;
}

.rank-gold,
.rank-silver,
.rank-bronze {
  color: var(--white);
}

.rank-gold {
  background: linear-gradient(135deg, #f97316, #facc15);
}

.rank-silver {
  background: linear-gradient(135deg, #64748b, #cbd5e1);
}

.rank-bronze {
  background: linear-gradient(135deg, #a16207, #f59e0b);
}

.rank-thumb {
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--slate-900);
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 4px;
}

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

.rank-info small,
.rank-views {
  color: var(--slate-500);
}

.rank-score {
  color: var(--orange-600);
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800));
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.7)), var(--page-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 70px 0;
}

.compact-page-hero::before {
  opacity: 0;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.filter-panel-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 14px;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--slate-600);
  font-weight: 700;
  font-size: 0.86rem;
}

.filter-panel input,
.filter-panel select,
.search-page-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 13px;
  background: var(--white);
  color: var(--slate-800);
  outline: none;
  padding: 0 14px;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-page-form input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.filter-count {
  margin: 12px 0 0;
  color: var(--slate-500);
}

.category-overview-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-overview-card a {
  display: grid;
  height: 100%;
}

.category-overview-visual {
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(249, 115, 22, 0.38)), var(--category-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
  font-size: 3.2rem;
}

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

.category-overview-body h2 {
  margin: 0 0 10px;
}

.category-overview-body p {
  margin: 0 0 14px;
  color: var(--slate-600);
}

.category-overview-body strong {
  color: var(--orange-600);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--orange-600);
  font-weight: 800;
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card,
.detail-card,
.side-card,
.prose-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.player-card,
.detail-card,
.side-card {
  padding: 24px;
}

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

.player-heading h1 {
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.source-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-600);
  font-weight: 900;
}

.video-frame {
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
}

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

.player-note {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.detail-card {
  display: grid;
  gap: 16px;
}

.detail-card h2 {
  font-size: 1.55rem;
}

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

.lead-text {
  color: var(--slate-800) !important;
  font-size: 1.08rem;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-list span {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.84rem;
  font-weight: 800;
}

.detail-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 22px;
}

.poster-side-card {
  overflow: hidden;
  padding: 0;
}

.poster-side-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--slate-900);
}

.poster-side-card div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.poster-side-card span {
  color: var(--slate-500);
  font-size: 0.92rem;
}

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

.related-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.related-card:hover {
  background: var(--slate-100);
}

.related-thumb {
  height: 68px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--slate-900);
}

.related-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.related-copy strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.related-copy small {
  color: var(--slate-500);
}

.search-page-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 20px;
}

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

.search-result-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.search-result-card img {
  width: 120px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--slate-900);
}

.search-result-card h2 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.search-result-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.92rem;
}

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

.prose-card {
  padding: 34px;
  color: var(--slate-600);
}

.prose-card p {
  margin: 0 0 18px;
}

.site-footer {
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 30px;
}

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

.site-footer p {
  margin: 12px 0 0;
}

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

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

.image-fallback {
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.42), transparent 34%), linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

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

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

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

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

  .detail-sidebar {
    position: static;
  }

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

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

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

  .hero {
    min-height: 680px;
  }

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

  .hero-controls {
    bottom: 150px;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .hero-search label {
    padding-left: 4px;
  }

  .section,
  .category-band,
  .detail-shell {
    padding: 46px 0;
  }

  .section-head,
  .player-heading,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid-featured,
  .category-grid,
  .category-overview-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .filter-panel-main,
  .search-page-form {
    grid-template-columns: 1fr;
  }

  .rank-link {
    grid-template-columns: 44px 86px 1fr;
  }

  .rank-score,
  .rank-views {
    display: none;
  }

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

  .search-result-card {
    grid-template-columns: 96px 1fr;
  }

  .search-result-card img {
    width: 96px;
    height: 72px;
  }
}
