:root {
  --pink: #ec4899;
  --pink-soft: #fce7f3;
  --blue: #60a5fa;
  --blue-soft: #dbeafe;
  --purple: #a78bfa;
  --purple-soft: #ede9fe;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --shadow: 0 20px 25px -5px rgb(0 0 0 / 0.10), 0 8px 10px -6px rgb(0 0 0 / 0.10);
  --shadow-soft: 0 10px 30px rgb(236 72 153 / 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 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,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgb(229 231 235 / 0.88);
  box-shadow: 0 12px 24px rgb(15 23 42 / 0.05);
}

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

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

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 12px;
  box-shadow: 0 10px 22px rgb(236 72 153 / 0.25);
  font-size: 14px;
}

.logo-text,
.footer-logo {
  font-size: 26px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #4b5563;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--pink);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--pink-soft);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--pink);
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(115deg, #f9a8d4 0%, #c4b5fd 48%, #93c5fd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgb(255 255 255 / 0.38), transparent 28%), radial-gradient(circle at 85% 18%, rgb(255 255 255 / 0.28), transparent 26%);
  pointer-events: none;
}

.hero-track {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 56px;
  align-items: center;
  opacity: 0;
  transform: translateX(26px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: -60px;
  background-image: linear-gradient(90deg, rgb(0 0 0 / 0.38), rgb(0 0 0 / 0.10)), var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: blur(8px) saturate(1.1);
  z-index: -1;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-content {
  color: #fff;
  max-width: 680px;
  text-shadow: 0 10px 30px rgb(0 0 0 / 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgb(255 255 255 / 0.88);
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.hero-summary {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.8;
  color: rgb(255 255 255 / 0.92);
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.30);
}

.detail-tags span,
.tag-row span {
  color: #db2777;
  background: var(--pink-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 18px 34px rgb(236 72 153 / 0.28);
}

.ghost-btn {
  color: #fff;
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.32);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.small-actions .ghost-btn {
  color: var(--pink);
  background: #fff;
  border-color: var(--pink-soft);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.34), rgb(255 255 255 / 0.08));
  border: 1px solid rgb(255 255 255 / 0.36);
  box-shadow: 0 32px 70px rgb(31 41 55 / 0.24);
}

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

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

.hero-poster span,
.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  color: #fff;
  background: rgb(236 72 153 / 0.86);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgb(236 72 153 / 0.34);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgb(255 255 255 / 0.18);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgb(255 255 255 / 0.52);
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #fff;
}

.hero-wave {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 110px;
}

.hero-wave path {
  fill: #fff;
}

.section-block {
  padding: 54px 0;
}

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

.section-heading h2,
.story-card h2,
.watch-section h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
}

.section-heading a {
  color: var(--pink);
  font-weight: 900;
}

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

.category-card,
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--pink-soft), var(--blue-soft));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card {
  min-height: 188px;
  padding: 28px;
}

.category-card:hover,
.collection-card:hover,
.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card strong,
.collection-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.category-card em,
.collection-card em {
  position: relative;
  z-index: 2;
  display: block;
  color: #4b5563;
  font-style: normal;
  line-height: 1.7;
}

.category-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 28px;
}

.category-card img {
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 22px;
  opacity: 0.28;
  transform: rotate(10deg);
}

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

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

.movie-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(229 231 235 / 0.88);
  border-radius: 24px;
  box-shadow: 0 10px 25px rgb(15 23 42 / 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card[hidden] {
  display: none;
}

.poster-link,
.poster-frame {
  display: block;
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fbcfe8, #bfdbfe);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgb(0 0 0 / 0.36) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.poster-play {
  width: 52px;
  height: 52px;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.rank-badge {
  position: absolute;
  z-index: 3;
  left: 12px;
  top: 12px;
  display: inline-flex;
  min-width: 38px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, var(--pink));
  border-radius: 12px;
  font-weight: 900;
}

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

.movie-card h2 {
  margin: 12px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

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

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

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: #6b7280;
  font-size: 13px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 40px 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: #f9a8d4;
}

.rank-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 12px;
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbcfe8, #bfdbfe);
}

.rank-item strong,
.rank-item em {
  display: block;
}

.rank-item strong {
  margin-bottom: 6px;
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-item em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.two-column-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.two-column-sections .section-block {
  min-width: 0;
}

.page-main {
  padding: 48px 0 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px;
  background: linear-gradient(135deg, #fff, #fdf2f8 48%, #eff6ff);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: 0 24px 60px rgb(15 23 42 / 0.08);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 58px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.collection-card {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.collection-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: transform 0.45s ease;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.18), rgb(255 255 255 / 0.95));
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 1fr));
  gap: 14px;
  margin: 28px 0 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 26px rgb(15 23 42 / 0.05);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #f9a8d4;
  box-shadow: 0 0 0 4px rgb(249 168 212 / 0.20);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: #6b7280;
  font-size: 14px;
}

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

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

.detail-hero {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 26px;
  padding: 40px;
  background: linear-gradient(135deg, #fff, #fdf2f8 50%, #eff6ff);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: 0 24px 60px rgb(15 23 42 / 0.08);
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  background: linear-gradient(135deg, #fbcfe8, #bfdbfe);
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info h1 {
  max-width: 780px;
  font-size: clamp(34px, 6vw, 58px);
}

.detail-lead {
  max-width: 820px;
  margin: 20px 0 0;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.85;
}

.detail-tags {
  margin: 22px 0;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.detail-meta div {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.detail-meta dt {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 800;
}

.detail-meta dd {
  margin: 6px 0 0;
  color: var(--text);
  font-weight: 900;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgb(15 23 42 / 0.26);
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #0f172a;
  object-fit: contain;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgb(15 23 42 / 0.62), rgb(236 72 153 / 0.36));
  border: 0;
  cursor: pointer;
}

.play-overlay[hidden] {
  display: none;
}

.play-circle {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  box-shadow: 0 18px 44px rgb(236 72 153 / 0.35);
  font-size: 26px;
}

.play-overlay strong {
  font-size: 18px;
}

.article-section {
  padding-top: 34px;
}

.story-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgb(15 23 42 / 0.06);
}

.story-card h2 + p {
  margin-top: 14px;
}

.story-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 2;
}

.site-footer {
  margin-top: 48px;
  background: linear-gradient(180deg, #f9fafb, #f3f4f6);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 42px 0;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.site-footer a:not(.footer-logo) {
  display: block;
  margin: 8px 0;
  color: #6b7280;
}

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

.footer-bottom {
  padding: 18px 0 26px;
  color: #6b7280;
  text-align: center;
  border-top: 1px solid var(--line);
}

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

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

@media (max-width: 920px) {
  .site-header-inner {
    height: auto;
    min-height: 66px;
    align-items: flex-start;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-top: 2px;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: var(--pink-soft);
  }

  .hero-track {
    min-height: 720px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 0 118px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-poster {
    width: min(270px, 70vw);
    justify-self: center;
  }

  .category-grid,
  .rank-grid,
  .wide-rank-grid,
  .two-column-sections,
  .footer-grid,
  .detail-hero {
    grid-template-columns: 1fr;
  }

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

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

  .detail-poster {
    width: min(330px, 78vw);
    margin: 0 auto;
  }

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

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

  .logo-text {
    font-size: 22px;
  }

  .hero,
  .hero-track {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-summary {
    font-size: 17px;
  }

  .hero-controls {
    bottom: 72px;
  }

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

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

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

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

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

  .page-hero,
  .detail-hero,
  .story-card {
    padding: 24px;
    border-radius: 26px;
  }

  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

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

  .player-shell {
    border-radius: 22px;
  }

  .footer-grid {
    padding: 32px 0;
  }
}

@media (max-width: 420px) {
  .category-grid,
  .collection-grid,
  .movie-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }
}
