:root {
  --rose: #f43f5e;
  --rose-dark: #e11d48;
  --orange: #f97316;
  --yellow: #facc15;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fff7ed;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 42%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.header-inner,
.nav-strip-inner,
.footer-inner,
.content-section,
.page-main,
.detail-body,
.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-icon,
.footer-logo span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 12px 26px rgba(244, 63, 94, 0.28);
}

.brand-text {
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 14px;
  color: #374151;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--rose-dark);
  background: #fff1f2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.search-mini input,
.mobile-search input,
.wide-search input,
.search-panel input,
.filter-search input {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 11px 16px;
  background: #ffffff;
  outline: none;
  min-width: 220px;
  transition: 0.25s ease;
}

.search-mini input:focus,
.mobile-search input:focus,
.wide-search input:focus,
.search-panel input:focus,
.filter-search input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.14);
}

.search-mini button,
.mobile-search button,
.wide-search button,
.search-panel button,
.btn-primary {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  padding: 11px 20px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  box-shadow: 0 12px 26px rgba(244, 63, 94, 0.24);
  transition: 0.25s ease;
}

.search-mini button:hover,
.mobile-search button:hover,
.wide-search button:hover,
.search-panel button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244, 63, 94, 0.32);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--ink);
  background: #f3f4f6;
}

.nav-strip {
  border-top: 1px solid rgba(229, 231, 235, 0.55);
}

.nav-strip-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  padding: 9px 0;
}

.nav-sub-link,
.mobile-sub-link {
  color: #6b7280;
  white-space: nowrap;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-sub-link:hover,
.mobile-sub-link:hover {
  color: var(--rose);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 18px;
  border-top: 1px solid #e5e7eb;
}

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

.mobile-link {
  display: block;
  padding: 12px 10px;
  border-radius: 14px;
  font-weight: 800;
}

.mobile-link.is-active,
.mobile-link:hover {
  color: var(--rose);
  background: #fff1f2;
}

.mobile-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  padding: 10px 0;
}

.main-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #111827;
}

.visual-track,
.visual-slide,
.visual-layer {
  position: absolute;
  inset: 0;
}

.visual-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
  background-image: var(--visual-image);
  background-size: cover;
  background-position: center;
}

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

.visual-layer {
  background: radial-gradient(circle at 74% 42%, rgba(249, 115, 22, 0.42), transparent 28%), linear-gradient(90deg, rgba(15, 23, 42, 0.93), rgba(15, 23, 42, 0.64) 46%, rgba(15, 23, 42, 0.22));
  backdrop-filter: blur(2px);
}

.visual-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 370px;
  gap: 52px;
  align-items: center;
  padding: 82px 0 78px;
}

.visual-copy {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  color: #ffe4e6;
  background: rgba(244, 63, 94, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.visual-copy h1 {
  margin: 24px 0 18px;
  max-width: 800px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.visual-copy p {
  max-width: 680px;
  color: #fee2e2;
  font-size: 20px;
  line-height: 1.75;
}

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

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

.visual-tags span,
.detail-tags a,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  color: #be123c;
  background: #ffe4e6;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 800;
  transition: 0.25s ease;
}

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

.visual-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.25;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.visual-poster img,
.poster-link img,
.detail-poster img,
.side-feature img,
.overview-images img,
.category-card img,
.mini-rank img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-control {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.visual-control button {
  border: 0;
  cursor: pointer;
}

.visual-control > button {
  width: 42px;
  height: 42px;
  color: #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 28px;
}

.visual-dots {
  display: flex;
  gap: 8px;
}

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

.visual-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.home-search-band {
  width: min(1180px, calc(100% - 32px));
  margin: -54px auto 70px;
  position: relative;
  z-index: 10;
}

.band-card,
.page-title-block,
.filter-panel,
.text-card,
.side-card,
.player-card,
.category-hero {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.band-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.band-card h2,
.section-head h2,
.page-title-block h1,
.category-copy h1,
.detail-info h1,
.text-card h2,
.side-card h2 {
  margin: 0;
  color: #111827;
  font-weight: 950;
}

.band-card h2 {
  font-size: 30px;
}

.band-card p,
.section-head p,
.page-title-block span,
.category-copy span,
.movie-info p,
.text-card p,
.footer-brand p,
.footer-column p {
  color: var(--muted);
  line-height: 1.75;
}

.wide-search input,
.search-panel input {
  flex: 1;
  min-width: 0;
}

.content-section {
  margin-top: 72px;
}

.content-section.no-top {
  margin-top: 32px;
}

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

.section-head h2 {
  font-size: 34px;
}

.section-head p {
  margin: 7px 0 0;
}

.section-more {
  color: var(--rose-dark);
  background: #fff1f2;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.16);
  background: #111827;
}

.category-card img {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  transition: 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.category-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.12));
}

.category-card strong,
.category-card small {
  position: relative;
  z-index: 2;
  display: block;
}

.category-card strong {
  padding: 94px 18px 4px;
  font-size: 22px;
  font-weight: 950;
}

.category-card small {
  padding: 0 18px 18px;
  color: #fee2e2;
  line-height: 1.55;
}

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

.movie-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(31, 41, 55, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #374151);
}

.poster-link img {
  transition: transform 0.35s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 42%);
  opacity: 0;
  transition: 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-chip,
.rank-badge {
  position: absolute;
  color: #ffffff;
  font-weight: 900;
  border-radius: 999px;
}

.play-chip {
  left: 12px;
  bottom: 12px;
  padding: 7px 12px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
}

.movie-info {
  padding: 14px 14px 16px;
}

.movie-meta,
.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
}

.movie-info h3 {
  margin: 8px 0 7px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 950;
}

.movie-info h3 a:hover {
  color: var(--rose);
}

.movie-info p {
  display: -webkit-box;
  margin: 0 0 12px;
  min-height: 47px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
}

.tag-row span {
  color: #f97316;
  background: #ffedd5;
  font-size: 12px;
}

.page-main {
  padding-top: 46px;
}

.page-title-block {
  padding: 42px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 242, 0.92));
}

.page-title-block p,
.category-copy p {
  margin: 0 0 10px;
  color: var(--rose);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.page-title-block h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.1;
}

.page-title-block span {
  display: block;
  margin-top: 14px;
  max-width: 760px;
}

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

.category-overview-card {
  color: var(--ink);
  background: #ffffff;
}

.overview-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 160px;
  overflow: hidden;
}

.overview-images img {
  min-width: 0;
}

.overview-body {
  padding: 20px;
}

.overview-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 950;
}

.overview-body p {
  min-height: 54px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.overview-body span {
  color: var(--rose-dark);
  font-weight: 950;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 213, 0.86));
}

.category-copy h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.category-copy span {
  display: block;
  margin: 14px 0 24px;
}

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

.side-feature {
  position: relative;
  overflow: hidden;
  min-height: 158px;
  border-radius: 20px;
  background: #111827;
}

.side-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.82), transparent);
}

.side-feature span {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 13px;
  color: #ffffff;
  font-weight: 900;
}

.filter-panel {
  margin: 28px 0 32px;
  padding: 22px;
}

.filter-search input {
  width: 100%;
  margin-bottom: 16px;
}

.filter-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #f3f4f6;
}

.filter-row > span {
  color: #6b7280;
  font-weight: 900;
  padding-top: 7px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  color: #4b5563;
  background: #f3f4f6;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--orange));
}

.detail-main {
  padding-bottom: 1px;
}

.detail-top {
  position: relative;
  overflow: hidden;
  background-image: var(--detail-bg);
  background-size: cover;
  background-position: center;
}

.detail-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.42));
  backdrop-filter: blur(7px);
}

.detail-layout {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 34px 0 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #fecdd3;
  font-size: 14px;
  margin-bottom: 32px;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.detail-poster img {
  aspect-ratio: 3 / 4.15;
}

.detail-info {
  color: #ffffff;
}

.detail-info h1 {
  margin: 20px 0 14px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.06;
}

.detail-line {
  max-width: 760px;
  color: #fee2e2;
  font-size: 19px;
  line-height: 1.8;
}

.detail-stats {
  gap: 10px;
  margin: 20px 0;
  color: #ffffff;
}

.detail-stats span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

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

.detail-play-link {
  display: inline-flex;
}

.detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: -44px;
  position: relative;
  z-index: 4;
}

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

.player-card {
  padding: 14px;
  background: #111827;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16));
}

.player-start span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 18px 40px rgba(244, 63, 94, 0.35);
  font-size: 30px;
}

.player-start strong {
  font-size: 18px;
}

.player-start.is-hidden {
  display: none;
}

.text-card,
.side-card {
  padding: 28px;
}

.text-card h2,
.side-card h2 {
  margin-bottom: 14px;
  font-size: 25px;
}

.text-card p {
  margin: 0;
  font-size: 16px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 12px;
  margin: 0;
}

.side-card dt {
  color: #9ca3af;
  font-weight: 900;
}

.side-card dd {
  margin: 0;
  color: #374151;
}

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

.mini-rank a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-rank img {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}

.mini-rank span {
  font-weight: 900;
}

.mini-rank small {
  display: block;
  margin-top: 5px;
  color: #9ca3af;
  font-weight: 700;
}

.related-section {
  margin-bottom: 72px;
}

.search-title .search-panel {
  margin-top: 24px;
  max-width: 760px;
}

.site-footer {
  margin-top: 80px;
  color: #e5e7eb;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 48px 0 36px;
}

.footer-logo {
  color: #ffffff;
  font-size: 24px;
}

.footer-brand p,
.footer-column p {
  color: #9ca3af;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

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

.footer-column a {
  color: #9ca3af;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  color: #9ca3af;
  text-align: center;
}

[hidden] {
  display: none !important;
}

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

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

  .visual-content,
  .category-hero,
  .detail-body,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .visual-poster {
    max-width: 330px;
  }

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

@media (max-width: 820px) {
  .desktop-nav,
  .search-mini,
  .nav-strip {
    display: none;
  }

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

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

  .main-visual,
  .visual-content {
    min-height: 620px;
  }

  .visual-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 54px;
  }

  .visual-poster {
    display: none;
  }

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

  .home-search-band {
    margin-top: -36px;
  }

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

  .category-grid,
  .overview-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

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

  .category-feature-list {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 520px) {
  .header-inner,
  .mobile-panel,
  .footer-inner,
  .content-section,
  .page-main,
  .detail-body,
  .detail-layout,
  .visual-content,
  .home-search-band {
    width: min(100% - 22px, 1180px);
  }

  .page-title-block,
  .category-hero,
  .band-card,
  .filter-panel,
  .text-card,
  .side-card {
    padding: 22px;
    border-radius: 22px;
  }

  .visual-copy p,
  .detail-line {
    font-size: 16px;
  }

  .movie-info h3 {
    font-size: 15px;
  }

  .movie-info p {
    font-size: 13px;
  }
}
