:root {
  --pink: #ec4899;
  --pink-600: #db2777;
  --purple: #8b5cf6;
  --purple-700: #6d28d9;
  --blue: #3b82f6;
  --orange: #f97316;
  --green: #10b981;
  --teal: #14b8a6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-lg: 0 18px 45px rgba(17, 24, 39, 0.12);
  --shadow-xl: 0 24px 60px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 45%, #eff6ff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  color: #fff;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.26);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #7c2d12;
  background: linear-gradient(135deg, #fde68a, #facc15);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(250, 204, 21, 0.35);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: #fde68a;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  padding: 0 0 18px;
  font-weight: 700;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 58px 0 72px;
  background: radial-gradient(circle at 18% 25%, rgba(236, 72, 153, 0.25), transparent 32%),
    radial-gradient(circle at 82% 15%, rgba(59, 130, 246, 0.2), transparent 35%),
    linear-gradient(135deg, #fce7f3, #f3e8ff 46%, #dbeafe);
}

.hero-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.38;
}

.orb-one {
  left: -120px;
  top: 80px;
  background: #ec4899;
}

.orb-two {
  right: -140px;
  bottom: 20px;
  background: #3b82f6;
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--pink-600);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-kicker.blue {
  color: var(--blue);
}

.section-kicker.green {
  color: var(--green);
}

.section-kicker.orange {
  color: var(--orange);
}

.section-kicker.teal {
  color: var(--teal);
}

.hero-copy h1 {
  margin: 0 0 16px;
  color: transparent;
  background: linear-gradient(90deg, var(--pink-600), var(--purple-700));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--gray-700);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

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

.primary-button {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.34);
}

.ghost-button {
  color: var(--purple-700);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

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

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.hero-poster img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

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

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

.hero-poster span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.hero-controls button {
  border: 0;
  color: var(--purple-700);
  background: rgba(255, 255, 255, 0.86);
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  box-shadow: var(--shadow-lg);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.45;
}

.hero-dots button.is-active {
  width: 28px;
  opacity: 1;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

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

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

.section-heading h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--gray-900), var(--purple-700));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading.light h2,
.section-link.light {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.section-link {
  min-height: 40px;
  padding: 0 18px;
  color: var(--purple-700);
  background: #fff;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.14);
}

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

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

.movie-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

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

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

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

.poster-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76));
  opacity: 0.8;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.34);
}

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

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 52px;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-title:hover {
  color: var(--purple-700);
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span {
  padding: 2px 8px;
  background: var(--gray-100);
  border-radius: 999px;
}

.movie-line {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--gray-700);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 4px 9px;
  color: var(--purple-700);
  background: linear-gradient(90deg, #fce7f3, #ede9fe);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.feature-band {
  background: linear-gradient(90deg, rgba(239, 246, 255, 0.86), rgba(250, 245, 255, 0.94));
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 999px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 24px;
}

.feature-card p {
  margin: 0 0 12px;
  color: var(--gray-700);
}

.feature-card em {
  color: var(--gray-500);
  font-style: normal;
  font-weight: 700;
}

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

.category-tile {
  min-height: 170px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:nth-child(2n) {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.category-tile:nth-child(3n) {
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.category-tile span {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.ranking-band {
  color: #fff;
  background: linear-gradient(135deg, #111827, #312e81 54%, #831843);
}

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

.horizontal-row {
  display: grid;
  grid-auto-columns: minmax(260px, 300px);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
}

.horizontal-row .movie-card {
  scroll-snap-align: start;
}

.page-main,
.detail-main {
  padding: 34px 0 70px;
}

.page-hero {
  margin-bottom: 34px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.page-hero.small p {
  max-width: 850px;
  margin: 14px 0 0;
  color: var(--gray-700);
  font-size: 17px;
}

.page-hero.dark-card {
  color: #fff;
  background: linear-gradient(135deg, #111827, #312e81, #831843);
}

.page-hero.dark-card h1,
.page-hero.dark-card p {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 6px 0 22px;
  color: var(--gray-500);
  font-size: 14px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(150px, 0.7fr));
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.09);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  color: var(--gray-800);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.empty-result {
  display: none;
  margin: 0 0 24px;
  padding: 18px;
  color: var(--gray-700);
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.empty-result.is-visible {
  display: block;
}

.category-overview-card {
  margin-bottom: 36px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.category-overview-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview-head p {
  margin: 0;
  color: var(--gray-600, #4b5563);
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

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

.detail-info h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
}

.detail-one-line {
  margin: 0 0 18px;
  color: var(--gray-700);
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 8px 12px;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 999px;
  font-weight: 800;
}

.detail-tags span {
  font-size: 13px;
}

.player-section,
.detail-article {
  margin-bottom: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.player-section h2,
.detail-article h2 {
  margin: 0 0 18px;
  color: var(--gray-900);
  font-size: 28px;
}

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

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  padding-left: 7px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 999px;
  font-size: 38px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

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

.player-frame.is-loading::after {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  content: "";
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-top-color: transparent;
  border-radius: 999px;
  animation: spin 0.8s linear infinite;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4;
  display: none;
  padding: 12px 16px;
  color: #fff;
  background: rgba(17, 24, 39, 0.86);
  border-radius: 14px;
  text-align: center;
}

.player-message.is-visible {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.detail-article p {
  margin: 0 0 24px;
  color: var(--gray-700);
  font-size: 17px;
}

.related-block {
  padding-top: 28px;
}


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

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

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

.site-footer h2 {
  color: transparent;
  background: linear-gradient(90deg, #f9a8d4, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 26px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
}

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

.site-footer li + li {
  margin-top: 9px;
}

.site-footer a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #f9a8d4;
}

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

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

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

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding: 36px 0 52px;
  }

  .hero-slider {
    min-height: 760px;
  }

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

  .hero-poster img {
    height: 380px;
  }

  .movie-grid,
  .movie-grid.large-list,
  .ranking-list,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-card img {
    height: 240px;
  }

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 22px, 1280px);
  }

  .brand-text {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-slider {
    min-height: 700px;
  }

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

  .hero-poster img {
    height: 320px;
  }

  .section-heading,
  .category-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .movie-grid,
  .movie-grid.large-list,
  .ranking-list,
  .mini-grid,
  .category-grid,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .player-section,
  .detail-article,
  .detail-hero,
  .category-overview-card {
    padding: 22px;
    border-radius: 22px;
  }

  .play-overlay span {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }
}
