:root {
  color-scheme: dark;
  --bg: #050507;
  --panel: rgba(17, 24, 39, 0.72);
  --panel-strong: rgba(0, 0, 0, 0.82);
  --line: rgba(249, 115, 22, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f9fafb;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --orange: #f97316;
  --orange-strong: #ea580c;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% -10%, rgba(249, 115, 22, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(124, 45, 18, 0.22), transparent 32rem),
    linear-gradient(180deg, #0a0a0d 0%, #050507 42%, #0a0a0d 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
  z-index: -1;
}

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: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg, #f97316, #fed7aa);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.36);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  color: #d4d4d8;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link {
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.12);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  border: 1px solid rgba(75, 85, 99, 0.8);
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.58);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.header-search input {
  width: 190px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #111827;
  background: var(--orange);
  cursor: pointer;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
  background: rgba(17, 24, 39, 0.85);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(31, 41, 55, 0.5);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #e5e7eb;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel.open {
  display: block;
}

.mobile-search {
  margin-bottom: 14px;
}

.mobile-search input {
  flex: 1;
  padding: 11px 14px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  background: rgba(31, 41, 55, 0.35);
}

.hero-shell {
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) brightness(0.55);
  transform: scale(1.04);
}

.hero-overlay,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.7) 44%, rgba(5, 5, 7, 0.2) 100%),
    linear-gradient(0deg, #050507 0%, rgba(5, 5, 7, 0.12) 52%, rgba(5, 5, 7, 0.75) 100%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 56px;
  padding: 90px 0 76px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  color: #fdba74;
  background: rgba(124, 45, 18, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(46px, 8vw, 86px);
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.hero-copy p,
.page-hero p,
.lead-text {
  max-width: 760px;
  color: #d4d4d8;
  font-size: 18px;
  line-height: 1.8;
}

.hero-copy p {
  margin: 24px 0 0;
}

.hero-tags,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.mini-tags span,
.detail-meta span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.62);
  color: #d4d4d8;
}

.hero-tags span {
  padding: 8px 12px;
}

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

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.primary-button,
.ghost-button {
  min-height: 48px;
  padding: 0 22px;
}

.primary-button {
  color: #111827;
  background: linear-gradient(135deg, #f97316, #fed7aa);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.3);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5f5f5;
  background: rgba(0, 0, 0, 0.32);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.ghost-button:hover {
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.15);
}

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.24);
  box-shadow: var(--shadow), 0 0 80px rgba(249, 115, 22, 0.18);
  transform: rotate(2deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55));
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

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

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

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

.quick-section,
.content-section,
.band-section,
.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-section,
.content-section,
.band-section {
  padding: 64px 0;
}

.band-section {
  width: 100%;
  padding: 64px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, rgba(124, 45, 18, 0.18), rgba(17, 24, 39, 0.35));
  border-block: 1px solid rgba(249, 115, 22, 0.12);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.compact-heading {
  margin-bottom: 18px;
}

.section-link {
  min-width: max-content;
  padding: 11px 16px;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.category-pills {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.category-pill {
  min-width: max-content;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f5f5f5;
  background: rgba(31, 41, 55, 0.5);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.category-pill:hover {
  color: #111827;
  background: var(--orange);
  transform: translateY(-2px);
}

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

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

.list-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.62), rgba(17, 24, 39, 0.42));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), 0 0 35px rgba(249, 115, 22, 0.12);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 2.82;
  background: #111827;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
}

.poster-meta,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.poster-meta {
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.66);
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  background: linear-gradient(135deg, #f97316, #fed7aa);
}

.movie-info {
  padding: 17px;
}

.movie-type-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.movie-type-row a {
  color: #fdba74;
}

.movie-info h2 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-info h2 a {
  transition: color 0.25s ease;
}

.movie-card:hover h2 a {
  color: var(--orange);
}

.movie-info p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mini-tags span {
  padding: 5px 8px;
  font-size: 12px;
}

.compact-card .movie-info {
  padding: 13px;
}

.compact-card .movie-info h2 {
  font-size: 15px;
}

.compact-card .movie-info p {
  display: none;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(249, 115, 22, 0.13);
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.22), transparent 30rem),
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(0, 0, 0, 0.82));
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 7vw, 72px);
}

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

.category-card {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.7), rgba(0, 0, 0, 0.48));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.category-card-main {
  display: block;
  padding: 28px;
}

.category-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

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

.category-samples {
  display: grid;
  gap: 8px;
  padding: 0 28px 28px;
}

.category-samples a {
  color: #d4d4d8;
  transition: color 0.25s ease;
}

.category-samples a:hover {
  color: var(--orange);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-bar input,
.filter-bar select {
  min-height: 48px;
  padding: 0 16px;
}

.empty-result {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(17, 24, 39, 0.55);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.58);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: rgba(249, 115, 22, 0.35);
}

.rank-row span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: var(--orange);
  font-weight: 900;
}

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

.rank-row em {
  color: var(--muted);
  font-style: normal;
}

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

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.46) saturate(1.08);
  transform: scale(1.03);
  z-index: -2;
}

.detail-shade {
  z-index: -1;
}

.detail-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 2.86;
  object-fit: cover;
}

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

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-meta span {
  padding: 8px 12px;
}

.detail-tags {
  margin-bottom: 30px;
}

.player-section {
  padding: 36px 0 20px;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #f97316, #fed7aa);
  box-shadow: 0 0 45px rgba(249, 115, 22, 0.44);
  font-size: 34px;
}

.player-loading,
.player-message {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
}

.prose-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.prose-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 28px;
}

.prose-card h2:not(:first-child) {
  margin-top: 30px;
}

.prose-card p {
  margin: 0;
  color: #d4d4d8;
  font-size: 17px;
  line-height: 1.9;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.42);
}

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

.footer-brand {
  color: var(--orange);
  font-weight: 900;
  font-size: 18px;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted-2);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

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

  .menu-toggle {
    display: block;
  }

  .header-inner {
    gap: 12px;
  }

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

  .hero-content {
    gap: 30px;
    padding-top: 70px;
  }

  .hero-poster,
  .detail-cover {
    max-width: 320px;
  }

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

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

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

  .rank-row em {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand-text small {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 590px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.03em;
  }

  .hero-copy p,
  .page-hero p,
  .lead-text {
    font-size: 16px;
  }

  .hero-poster {
    display: none;
  }

  .quick-section,
  .content-section,
  .band-section,
  .player-section,
  .detail-inner,
  .page-hero > div {
    width: min(100% - 24px, 1180px);
  }

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

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

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

  .movie-info {
    padding: 13px;
  }

  .movie-info h2 {
    font-size: 16px;
  }

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

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

  .detail-cover {
    max-width: 250px;
  }

  .prose-card {
    padding: 24px;
  }

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