:root {
  --pink: #ec4899;
  --red: #ef4444;
  --orange: #f97316;
  --yellow: #f59e0b;
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --green: #10b981;
  --purple: #8b5cf6;
  --gray-950: #0f172a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 70px rgba(15, 23, 42, 0.22);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 45%, #eff6ff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(236, 72, 153, 0.14);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

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

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

.logo {
  font-size: clamp(20px, 3vw, 28px);
  background: linear-gradient(90deg, var(--pink), var(--red));
  -webkit-background-clip: text;
  color: transparent;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
  animation: heartbeat 1.6s ease-in-out infinite;
}

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

.nav-link,
.mobile-link {
  font-weight: 700;
  color: var(--gray-700);
  transition: color 0.25s ease, background 0.25s ease;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--pink-100);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--red);
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(236, 72, 153, 0.12);
}

.mobile-nav.is-open {
  display: grid;
  gap: 6px;
  animation: slideDown 0.25s ease-out;
}

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

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

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #be123c;
}

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

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

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

.hero-slide::before,
.detail-hero::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 54px;
  align-items: center;
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
  animation: fadeUp 0.6s ease-out;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-copy h1,
.inner-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy p,
.inner-hero p,
.detail-line {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.65;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.tag-row {
  margin-top: 14px;
}

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

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

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

.primary-button {
  padding: 14px 24px;
  color: var(--red);
  background: var(--white);
  box-shadow: var(--shadow);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.filter-reset:hover {
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  padding: 14px 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.38);
  transform: rotate(3deg);
  transition: transform 0.35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.04);
}

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

.hero-poster span,
.detail-poster span,
.play-pill {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 14px 30px rgba(239, 68, 68, 0.32);
}

.hero-poster span {
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  font-size: 24px;
}

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

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

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

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.quick-links a {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  color: var(--gray-800);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, color 0.25s ease;
}

.quick-links a:hover {
  color: var(--red);
  transform: translateY(-5px);
}

.page-section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  color: transparent;
}

.section-heading p {
  flex-basis: 100%;
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 24px;
  animation: bounceSlow 2.2s ease-in-out infinite;
}

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card-link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), #fee2e2);
}

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

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

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

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

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

.movie-type,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(239, 68, 68, 0.95);
  font-size: 12px;
  font-weight: 900;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.play-pill {
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  opacity: 0;
  transform: translateY(14px) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card h3 {
  margin: 0;
  min-height: 48px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-compact h3 {
  min-height: 42px;
  font-size: 16px;
}

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

.movie-meta,
.ranking-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
}

.movie-meta span,
.ranking-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--gray-100);
}

.category-band {
  background: linear-gradient(90deg, #f3e8ff, var(--pink-100), #dbeafe);
}

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

.category-grid-overview {
  margin: 42px 0 28px;
}

.category-tile a {
  position: relative;
  display: block;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-tile a:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.category-tile h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 950;
}

.category-tile p,
.category-samples {
  color: var(--gray-600);
  line-height: 1.65;
}

.category-samples {
  margin-top: 16px;
  font-size: 14px;
}

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

.category-count {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--red));
  font-weight: 900;
}

.category-preview {
  padding: 44px 0;
  border-top: 1px solid rgba(236, 72, 153, 0.12);
}

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

.category-preview h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 950;
}

.category-preview p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.text-button,
.filter-reset {
  padding: 11px 18px;
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--red));
  cursor: pointer;
}

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

.ranking-grid-large {
  margin-top: 22px;
}

.ranking-item a {
  display: grid;
  grid-template-columns: 54px 148px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 126px;
  padding: 14px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-item a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-weight: 950;
}

.ranking-item img {
  width: 148px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
}

.ranking-item p {
  margin: 8px 0 0;
  color: var(--gray-600);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 150px auto;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--gray-100);
}

.search-box input,
.filter-select {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gray-800);
}

.filter-select {
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gray-100);
  cursor: pointer;
}

.result-hint {
  min-height: 26px;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-weight: 800;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--red), var(--yellow));
}

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

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: var(--white);
  background: var(--gray-950);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

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

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

.detail-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

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

.detail-poster span {
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
}

.detail-copy h1 {
  max-width: 900px;
}

.detail-meta {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.18);
}

.detail-section {
  margin-top: -64px;
  position: relative;
  z-index: 4;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020617;
}

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.18));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-cover-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.36);
  font-size: 34px;
}

.play-cover strong {
  max-width: min(90%, 760px);
  text-align: center;
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.25;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}

.content-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 950;
}

.content-card p {
  color: var(--gray-700);
  line-height: 1.85;
  font-size: 16px;
}

.site-footer {
  margin-top: 70px;
  color: var(--white);
  background: linear-gradient(90deg, var(--gray-950), var(--gray-800));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 52px 0;
}

.footer-logo {
  margin-bottom: 14px;
  font-size: 22px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

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

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

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

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

.is-filter-hidden {
  display: none !important;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.09);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.14);
  }
}

@keyframes bounceSlow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

  .hero-content {
    min-height: 720px;
    gap: 28px;
    padding: 52px 0 90px;
  }

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

  .quick-links,
  .category-grid,
  .ranking-grid,
  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

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

  .ranking-item a {
    grid-template-columns: 42px 108px minmax(0, 1fr);
  }

  .ranking-item img {
    width: 108px;
    height: 78px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

  .hero-copy h1,
  .inner-hero h1,
  .detail-copy h1 {
    font-size: 40px;
  }

  .quick-links,
  .category-grid,
  .ranking-grid,
  .filter-panel,
  .movie-grid,
  .movie-grid-compact {
    grid-template-columns: 1fr;
  }

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

  .ranking-item a {
    grid-template-columns: 38px 88px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-item img {
    width: 88px;
    height: 70px;
  }

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

  .content-card {
    padding: 22px;
  }
}
