:root {
  --pink: #ec4899;
  --pink-600: #db2777;
  --purple: #8b5cf6;
  --purple-700: #6d28d9;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --emerald: #10b981;
  --slate: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #fff1f8;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7fb 0%, #f8fafc 32%, #ffffff 100%);
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(236, 72, 153, 0.12);
}

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

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

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.34);
}

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

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

.nav-link {
  color: #374151;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  padding: 0;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  min-width: 180px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #4b5563;
}

.dropdown-panel a:hover {
  color: var(--pink-600);
  background: linear-gradient(90deg, #fdf2f8, #f5f3ff);
}

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

.header-search input,
.mobile-search input {
  width: 230px;
  border: 2px solid #fbcfe8;
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.filter-selects select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.header-search button,
.mobile-search button {
  border: 0;
  color: #ffffff;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.menu-button {
  display: none;
  border: 0;
  background: #fdf2f8;
  color: var(--pink-600);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 24px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: #ffffff;
}

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

.mobile-panel nav {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

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

.mobile-search input {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #ffffff;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #db2777, #7c3aed, #2563eb, #db2777);
  background-size: 250% 250%;
  animation: gradient-flow 16s ease infinite;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.32) 1px, transparent 0);
  background-size: 34px 34px;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(0deg, #fff7fb, rgba(255, 247, 251, 0));
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 52px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffe4f2;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

.hero-copy p {
  margin: 20px 0 0;
  max-width: 680px;
  color: #fff0f8;
  font-size: 20px;
  line-height: 1.8;
}

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

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

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

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

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

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

.primary-action {
  color: var(--pink-600);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.ghost-action {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.primary-action:hover,
.ghost-action:hover,
.pill-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.34);
  transform: rotate(2deg);
}

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

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

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  justify-content: center;
  border-radius: 18px;
  padding: 12px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  left: 0;
  bottom: 86px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.active {
  width: 52px;
  background: #ffffff;
}

.channel-strip {
  position: relative;
  z-index: 4;
  margin-top: -82px;
  margin-bottom: 56px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.channel-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 24px;
  padding: 18px;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.channel-card:hover {
  transform: translateY(-4px) rotate(-1deg) scale(1.02);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.channel-card strong {
  font-size: 16px;
}

.channel-card small {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.tone-pink,
.tone-rose {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.tone-amber,
.tone-orange {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.tone-blue,
.tone-cyan {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.tone-indigo,
.tone-purple,
.tone-fuchsia {
  background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
}

.tone-emerald {
  background: linear-gradient(135deg, #10b981, #22c55e);
}

.content-section {
  margin-bottom: 64px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink-600), var(--purple-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.spotlight-panel {
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.warm-panel {
  background: linear-gradient(135deg, #fff7ed, #fdf2f8, #f5f3ff);
}

.cool-panel {
  background: linear-gradient(135deg, #eff6ff, #ecfeff, #f0fdfa);
}

.light-panel {
  background: linear-gradient(135deg, #fffbeb, #fff7ed, #fdf2f8);
}

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #eff6ff);
}

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.play-chip {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pink-600);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scale(0.84);
  transition: all 0.2s ease;
}

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

.duration-chip,
.rank-badge {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.78);
}

.duration-chip {
  right: 10px;
  bottom: 10px;
}

.rank-badge {
  left: 10px;
  top: 10px;
  background: linear-gradient(135deg, var(--amber), var(--rose));
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: var(--pink-600);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  margin-bottom: 12px;
}

.card-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 8px;
  background: #f8fafc;
}

.tag-row span {
  color: var(--pink-600);
  background: #fdf2f8;
}

.card-category {
  display: inline-flex;
  margin-top: 12px;
  color: var(--purple-700);
  font-weight: 900;
}

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

.list-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.list-card .poster-link {
  aspect-ratio: 16 / 10;
  height: 100%;
}

.page-hero,
.detail-hero {
  position: relative;
  color: #ffffff;
  background: linear-gradient(120deg, var(--pink-600), var(--purple-700), var(--blue));
  overflow: hidden;
}

.page-hero {
  padding: 86px 0 92px;
  margin-bottom: 56px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.5) 1px, transparent 0);
  background-size: 30px 30px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

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

.compact-actions {
  margin-top: 24px;
}

.filter-box {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.filter-search {
  flex: 1;
}

.filter-input,
.filter-selects select {
  width: 100%;
  border: 2px solid #fbcfe8;
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
  background: #ffffff;
}

.filter-selects {
  display: flex;
  gap: 10px;
}

.filter-selects select {
  min-width: 150px;
}

.empty-state {
  display: none;
  margin: 26px 0 0;
  padding: 24px;
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

.category-overview-list {
  display: grid;
  gap: 28px;
}

.category-overview {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.overview-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.overview-copy p:first-child {
  margin: 0 0 10px;
  opacity: 0.86;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.overview-copy h2 {
  margin: 0;
  font-size: 34px;
}

.overview-copy p {
  line-height: 1.8;
}

.pill-link {
  color: var(--pink-600);
  background: #ffffff;
}

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

.overview-movies .movie-card:nth-child(n + 3) {
  display: none;
}

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

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 44px 0 96px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #fdf2f8;
  font-weight: 800;
}

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

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

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

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

.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.05;
}

.detail-copy .lead {
  margin: 22px 0 0;
  color: #fdf2f8;
  max-width: 860px;
  font-size: 20px;
  line-height: 1.8;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.detail-tags {
  margin-top: 18px;
}

.detail-tags a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.detail-copy .primary-action {
  margin-top: 28px;
}

.player-section {
  margin-top: -58px;
  margin-bottom: 42px;
  position: relative;
  z-index: 4;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #050816;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.28), rgba(15, 23, 42, 0.58));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 38px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.44);
}

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

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  margin-bottom: 64px;
}

.story-panel,
.info-panel {
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.story-panel h2,
.info-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
  color: var(--slate);
}

.story-panel p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
}

.info-panel {
  grid-row: span 2;
}

.info-panel dl {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.info-panel dt {
  color: #64748b;
  font-weight: 800;
}

.info-panel dd {
  margin: 0;
  color: #111827;
  line-height: 1.6;
}

.info-panel a {
  color: var(--pink-600);
  font-weight: 900;
}

.site-footer {
  margin-top: 70px;
  color: #ffffff;
  background: linear-gradient(100deg, var(--pink-600), var(--purple-700), var(--blue));
}

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

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
}

.site-footer p,
.site-footer li {
  color: #ffe4f2;
  line-height: 1.8;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

@keyframes gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

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

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide {
    grid-template-columns: 1fr 260px;
    gap: 28px;
  }

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

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .hero-section,
  .hero-stage {
    min-height: 780px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-poster {
    width: min(230px, 70vw);
    margin: 0 auto;
  }

  .hero-dots {
    bottom: 40px;
  }

  .channel-strip {
    margin-top: -44px;
  }

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

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

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

  .list-card .poster-link {
    aspect-ratio: 16 / 10;
  }

  .filter-box,
  .filter-selects {
    flex-direction: column;
  }

  .detail-poster {
    width: min(260px, 78vw);
  }

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

@media (max-width: 520px) {
  .brand-text {
    font-size: 22px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy h2 {
    font-size: 28px;
  }

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

  .overview-movies {
    grid-template-columns: 1fr;
  }

  .overview-movies .movie-card:nth-child(n + 2) {
    display: none;
  }
}
