:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #111827;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --orange: #f97316;
  --yellow: #facc15;
  --blue: #2563eb;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.10);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.top-nav {
  width: min(var(--container), calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand span:last-child {
  font-size: 21px;
  background: linear-gradient(90deg, #fb7185, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.38);
  font-size: 14px;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.desktop-links a,
.mobile-menu a {
  font-size: 15px;
  color: #e5e7eb;
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-links a:hover,
.desktop-links a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: #fb7185;
}

.nav-search {
  position: relative;
  width: 260px;
}

.nav-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 42px 10px 16px;
  color: var(--white);
  background: rgba(51, 65, 85, 0.78);
  outline: none;
}

.nav-search input:focus {
  border-color: rgba(248, 113, 113, 0.8);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.nav-search button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #cbd5e1;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  color: var(--white);
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.mobile-menu.is-open {
  display: grid;
  gap: 14px;
}

.mobile-search {
  display: flex;
  gap: 10px;
}

.mobile-search input,
.wide-search input,
.local-search input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--slate-900);
  outline: none;
  background: var(--white);
}

.mobile-search button,
.wide-search button,
.local-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  cursor: pointer;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.42), transparent 34%), linear-gradient(120deg, var(--slate-950), #7f1d1d 50%, #431407);
}

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

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  transform: scale(1.04);
}

.hero-overlay,
.detail-bg-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.28) 52%, rgba(2, 6, 23, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  min-height: 72vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  color: var(--white);
}

.hero-badge,
.page-hero span,
.section-heading span,
.featured-copy span {
  display: inline-flex;
  width: max-content;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.hero h1,
.detail-copy h1 {
  margin: 20px 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.detail-copy p,
.featured-copy p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-tags,
.detail-genres,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-genres span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: #b91c1c;
  background: #fff1f2;
  font-size: 12px;
  font-weight: 700;
}

.hero-meta,
.detail-meta,
.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
  color: #cbd5e1;
}

.hero-meta span,
.detail-meta span,
.inline-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(12px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 850;
  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: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.35);
}

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

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

.hero-dot {
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.search-hero-panel,
.section-wrap,
.featured-band,
.filter-panel,
.detail-layout,
.related-wrap {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.search-hero-panel {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  align-items: center;
  gap: 28px;
  margin-top: -52px;
  position: relative;
  z-index: 5;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: var(--slate-900);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.search-hero-panel h2,
.section-heading h2,
.content-card h2,
.side-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.search-hero-panel p {
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.wide-search {
  display: flex;
  gap: 12px;
}

.wide-search.compact {
  max-width: 650px;
  margin-top: 24px;
}

.section-wrap {
  padding: 64px 0 0;
}

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

.section-heading span,
.featured-copy span,
.page-hero span {
  margin-bottom: 10px;
  color: #fff7ed;
}

.section-heading a {
  color: var(--red);
  font-weight: 800;
}

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.poster-wrap img,
.category-tile img,
.overview-card img,
.featured-poster img,
.detail-poster img,
.list-poster img,
.side-rank img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card-link:hover .poster-wrap img,
.category-tile:hover img,
.overview-card:hover img,
.featured-poster:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 55%);
  opacity: 0.82;
}

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

.rank-badge {
  left: 10px;
  right: auto;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(220, 38, 38, 0.86);
  transform: translate(-50%, -50%) scale(0.78);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

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

.movie-card-body h3 {
  min-height: 2.7em;
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-body p {
  min-height: 3em;
  margin: 0 0 12px;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--slate-500);
  font-size: 13px;
}

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

.category-tile,
.overview-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--slate-900);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.category-tile::after,
.overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.12));
}

.category-tile img,
.overview-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.category-tile {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
}

.category-tile span,
.overview-card span {
  color: #fecaca;
  font-size: 13px;
  font-weight: 800;
}

.category-tile strong,
.overview-card h2 {
  margin: 8px 0;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p,
.overview-card p {
  margin: 0;
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.6;
}

.featured-band {
  display: grid;
  grid-template-columns: 1.25fr 360px;
  gap: 34px;
  align-items: center;
  margin-top: 72px;
  padding: 38px;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  background: radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.46), transparent 32%), linear-gradient(135deg, var(--slate-950), #7f1d1d 58%, #431407);
  box-shadow: var(--shadow);
}

.featured-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 950;
}

.featured-poster {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  aspect-ratio: 3 / 4;
}

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

.list-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.list-poster {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  background: var(--slate-900);
}

.list-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-title {
  color: var(--slate-900);
  font-size: 20px;
  font-weight: 900;
}

.list-content p {
  margin: 10px 0;
  color: var(--slate-600);
  line-height: 1.7;
}

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

.inline-meta span {
  background: var(--slate-100);
}

.inner-page {
  min-height: 70vh;
}

.page-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px max(16px, calc((100% - var(--container)) / 2));
  color: var(--white);
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.32), transparent 34%), linear-gradient(135deg, var(--slate-950), #172554 56%, #7f1d1d);
}

.small-hero {
  min-height: 260px;
}

.search-hero {
  background: radial-gradient(circle at 76% 20%, rgba(220, 38, 38, 0.36), transparent 34%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.rank-hero {
  background: radial-gradient(circle at 72% 24%, rgba(250, 204, 21, 0.24), transparent 32%), linear-gradient(135deg, var(--slate-950), #7f1d1d);
}

.category-hero {
  background: radial-gradient(circle at 74% 20%, rgba(37, 99, 235, 0.32), transparent 34%), linear-gradient(135deg, var(--slate-950), #1e3a8a, #7f1d1d);
}

.page-hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 950;
}

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

.overview-card {
  display: grid;
  min-height: 260px;
  align-items: end;
  padding: 24px;
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-group span {
  font-weight: 900;
  color: var(--slate-700);
}

.filter-group button,
.sort-group select {
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--slate-700);
  background: var(--white);
  cursor: pointer;
}

.filter-group button.active,
.filter-group button:hover {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.result-text {
  margin: 0;
  color: var(--slate-600);
  font-weight: 700;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: blur(2px);
  transform: scale(1.05);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding: 58px 0;
}

.detail-poster {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 3 / 4;
  background: var(--slate-900);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #cbd5e1;
  font-size: 14px;
}

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

.detail-copy h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding-top: 40px;
}

.detail-main,
.detail-aside {
  display: grid;
  gap: 22px;
  align-content: start;
}

.player-card,
.content-card,
.side-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(220, 38, 38, 0.20), rgba(2, 6, 23, 0.72));
  cursor: pointer;
}

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

.player-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 22px 48px rgba(220, 38, 38, 0.42);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 20px;
}

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

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

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

.detail-tags a {
  padding: 8px 12px;
}

.side-card dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 12px;
}

.side-card dt {
  color: var(--slate-500);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: var(--slate-900);
}

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

.side-rank a {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--slate-800);
}

.side-rank img {
  height: 78px;
  border-radius: 10px;
  background: var(--slate-900);
}

.site-footer {
  margin-top: 76px;
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-grid {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 17px;
}

.footer-grid p {
  line-height: 1.8;
  color: #cbd5e1;
}

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

.footer-grid a:hover {
  color: #fb7185;
}

.copyright {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 20px 16px;
  text-align: center;
  color: #94a3b8;
}

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

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

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

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

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

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

@media (max-width: 860px) {
  .hero,
  .hero-content {
    min-height: 620px;
  }

  .search-hero-panel,
  .featured-band,
  .detail-hero-inner,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .search-hero-panel {
    margin-top: -34px;
  }

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

  .featured-poster {
    max-width: 300px;
  }

  .detail-hero-inner {
    min-height: auto;
  }

  .detail-poster {
    max-width: 260px;
  }

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

  .list-card {
    grid-template-columns: 110px 1fr;
  }
}

@media (max-width: 560px) {
  .top-nav {
    height: 62px;
  }

  .brand span:last-child {
    font-size: 18px;
  }

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

  .hero p,
  .page-hero p,
  .detail-copy p,
  .featured-copy p {
    font-size: 16px;
  }

  .section-wrap {
    padding-top: 42px;
  }

  .movie-grid {
    gap: 14px;
  }

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

  .movie-card-body h3 {
    font-size: 14px;
  }

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

  .category-tile,
  .overview-card {
    min-height: 190px;
    padding: 16px;
  }

  .wide-search,
  .mobile-search,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .featured-band,
  .search-hero-panel,
  .filter-panel,
  .content-card,
  .side-card {
    padding: 18px;
  }

  .list-card {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .list-content p,
  .inline-meta {
    display: none;
  }

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 24px;
  }
}
