:root {
  --site-slate-950: #020617;
  --site-slate-900: #0f172a;
  --site-slate-800: #1e293b;
  --site-slate-700: #334155;
  --site-sky-700: #0369a1;
  --site-sky-600: #0284c7;
  --site-sky-500: #0ea5e9;
  --site-sky-100: #e0f2fe;
  --site-amber-500: #f59e0b;
  --site-gray-50: #f8fafc;
  --site-gray-100: #f1f5f9;
  --site-gray-200: #e2e8f0;
  --site-gray-500: #64748b;
  --site-gray-700: #334155;
  --site-gray-900: #0f172a;
  --site-white: #ffffff;
  --site-radius: 18px;
  --site-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  --site-shadow-strong: 0 26px 60px rgba(15, 23, 42, 0.20);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, var(--site-gray-50), var(--site-gray-100));
  color: var(--site-gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--site-white);
  background: linear-gradient(90deg, var(--site-slate-900), var(--site-slate-800), var(--site-slate-900));
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
}

.nav-shell {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.16);
  color: #38bdf8;
  border: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow: inset 0 0 20px rgba(14, 165, 233, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: #7dd3fc;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link,
.mobile-link {
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--site-white);
  background: var(--site-sky-600);
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(15, 23, 42, 0.48);
}

.nav-search input,
.mobile-search input {
  width: 170px;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--site-white);
  background: transparent;
  padding: 10px 12px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
  color: #94a3b8;
}

.nav-search button,
.mobile-search button {
  border: 0;
  color: var(--site-white);
  background: var(--site-sky-600);
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  border: 0;
  color: var(--site-white);
  background: rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 10px 18px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: var(--site-slate-800);
}

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

.mobile-link {
  display: block;
  padding: 11px 12px;
  font-weight: 700;
}

.mobile-search {
  margin-top: 12px;
}

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

.hero-section {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: var(--site-slate-950);
}

.hero-slides,
.hero-slide,
.hero-backdrop {
  position: absolute;
  inset: 0;
}

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

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

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.90), rgba(15, 23, 42, 0.66), rgba(2, 132, 199, 0.12)), linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  color: var(--site-white);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(125, 211, 252, 0.28);
  font-weight: 800;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 30px;
  color: #e5e7eb;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.8;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.secondary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 13px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.primary-button {
  color: var(--site-white);
  background: var(--site-sky-600);
  box-shadow: 0 14px 34px rgba(2, 132, 199, 0.30);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--site-sky-700);
}

.secondary-button {
  color: var(--site-white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.text-button {
  min-height: auto;
  padding: 0;
  color: var(--site-sky-600);
}

.text-button:hover {
  color: var(--site-sky-700);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  width: min(1232px, calc(100% - 48px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-dot {
  color: #cbd5e1;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dot strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-dot span {
  color: #7dd3fc;
  font-size: 12px;
}

.hero-dot.is-active,
.hero-dot:hover {
  color: var(--site-white);
  border-color: rgba(14, 165, 233, 0.72);
  background: rgba(2, 132, 199, 0.55);
}

.section {
  padding: 70px 24px;
}

.section.white {
  background: var(--site-white);
}

.section.soft {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.section-shell {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--site-sky-600);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-head h2,
.page-title h1,
.detail-title h1 {
  margin: 0;
  color: var(--site-gray-900);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-head p,
.page-title p,
.detail-title p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--site-gray-500);
  font-size: 17px;
  line-height: 1.8;
}

.carousel-tools {
  display: flex;
  gap: 10px;
}

.carousel-tools button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--site-gray-100);
  color: var(--site-gray-700);
  font-size: 22px;
  cursor: pointer;
  transition: 0.2s ease;
}

.carousel-tools button:hover {
  color: var(--site-white);
  background: var(--site-sky-600);
}

.movie-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 4px 22px;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.movie-rail .movie-card {
  min-width: 260px;
  max-width: 260px;
}

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

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

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

.movie-card {
  position: relative;
  border-radius: var(--site-radius);
  overflow: hidden;
  background: var(--site-white);
  box-shadow: var(--site-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

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

.poster-frame img,
.related-poster img,
.category-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .poster-frame img,
.related-item:hover .related-poster img,
.category-card:hover .category-preview img {
  transform: scale(1.08);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.68), transparent);
}

.poster-region,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  color: var(--site-white);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.25);
}

.poster-region {
  left: 12px;
  padding: 6px 10px;
  background: var(--site-sky-600);
}

.rank-badge {
  right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--site-amber-500);
}

.card-body {
  display: block;
  padding: 18px;
}

.card-body strong {
  display: block;
  overflow: hidden;
  min-height: 48px;
  color: var(--site-gray-900);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 900;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
  color: var(--site-sky-600);
}

.card-meta,
.card-desc {
  display: block;
  color: var(--site-gray-500);
  font-size: 13px;
  line-height: 1.7;
}

.card-meta {
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-desc {
  display: -webkit-box;
  margin-top: 8px;
  min-height: 44px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--site-sky-700);
  background: var(--site-sky-100);
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  overflow: hidden;
  border-radius: var(--site-radius);
  color: inherit;
  background: var(--site-white);
  text-decoration: none;
  box-shadow: var(--site-shadow);
  transition: 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--site-shadow-strong);
}

.category-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 150px;
  overflow: hidden;
  background: var(--site-gray-200);
}

.category-card-body {
  display: block;
  padding: 20px;
}

.category-card-body strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 900;
}

.category-card-body span {
  display: block;
  color: var(--site-gray-500);
  font-size: 14px;
  line-height: 1.7;
}

.page-hero {
  padding: 78px 24px 56px;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.20), transparent 35%), linear-gradient(180deg, #ffffff, #f8fafc);
}

.page-title {
  max-width: 1280px;
  margin: 0 auto;
}

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

.breadcrumb a {
  color: var(--site-sky-600);
  text-decoration: none;
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 210px));
  gap: 12px;
  padding: 18px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--site-white);
  box-shadow: var(--site-shadow);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--site-gray-200);
  border-radius: 12px;
  outline: 0;
  padding: 12px 14px;
  color: var(--site-gray-900);
  background: #f8fafc;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--site-sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.no-results {
  display: none;
  border-radius: 18px;
  padding: 28px;
  color: var(--site-gray-500);
  background: var(--site-white);
  box-shadow: var(--site-shadow);
  text-align: center;
  font-weight: 700;
}

.no-results.is-visible {
  display: block;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 54px 124px 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 18px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
  background: var(--site-white);
  box-shadow: var(--site-shadow);
  transition: 0.22s ease;
}

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

.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--site-white);
  background: linear-gradient(135deg, var(--site-sky-600), #38bdf8);
  font-size: 18px;
  font-weight: 900;
}

.ranking-row img {
  width: 124px;
  height: 78px;
  border-radius: 13px;
  object-fit: cover;
  background: var(--site-gray-200);
}

.ranking-copy strong {
  display: block;
  color: var(--site-gray-900);
  font-size: 17px;
  font-weight: 900;
}

.ranking-copy span,
.ranking-copy em {
  display: block;
  color: var(--site-gray-500);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: var(--site-slate-950);
}

.detail-hero-bg,
.detail-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-hero-bg img {
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.04);
}

.detail-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.70), rgba(2, 6, 23, 0.30)), linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent);
}

.detail-title {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 24px 64px;
  color: var(--site-white);
}

.detail-title h1 {
  max-width: 920px;
  color: var(--site-white);
}

.detail-title p {
  max-width: 820px;
  color: #e2e8f0;
}

.detail-title .breadcrumb {
  color: #cbd5e1;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(125, 211, 252, 0.25);
  font-weight: 800;
}

.detail-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.88fr);
  gap: 34px;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  box-shadow: var(--site-shadow-strong);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: var(--site-white);
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.25), rgba(2, 6, 23, 0.58));
  cursor: pointer;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  color: var(--site-white);
  background: var(--site-sky-600);
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.42);
  font-size: 34px;
}

.player-cover strong {
  font-size: 20px;
  letter-spacing: 0.08em;
}

.player-status {
  display: none;
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 6;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--site-white);
  background: rgba(15, 23, 42, 0.76);
  font-size: 13px;
}

.player-status.is-visible {
  display: inline-flex;
}

.content-block,
.side-card {
  margin-top: 24px;
  border-radius: 22px;
  padding: 28px;
  background: var(--site-white);
  box-shadow: var(--site-shadow);
}

.content-block h2,
.side-card h2 {
  margin: 0 0 16px;
  color: var(--site-gray-900);
  font-size: 24px;
  font-weight: 900;
}

.content-block p {
  margin: 0 0 18px;
  color: var(--site-gray-700);
  font-size: 16px;
  line-height: 1.9;
}

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

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

.related-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.related-poster {
  display: block;
  width: 118px;
  height: 74px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--site-gray-200);
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--site-gray-900);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-item em {
  display: block;
  margin-top: 6px;
  color: var(--site-gray-500);
  font-size: 13px;
  font-style: normal;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--site-slate-800), var(--site-slate-900));
}

.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--site-white);
  font-size: 20px;
}

.footer-brand span {
  color: #38bdf8;
}

.site-footer p {
  max-width: 520px;
  margin: 14px 0 0;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--site-white);
  font-size: 17px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.20);
  padding: 20px 24px;
  text-align: center;
  color: #94a3b8;
}

.hidden-card {
  display: none;
}

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

  .nav-search {
    display: none;
  }
}

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

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

  .hero-section {
    height: 680px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 82px;
  }

  .hero-dots {
    grid-template-columns: 1fr;
    bottom: 20px;
  }

  .hero-dot {
    display: none;
  }

  .hero-dot.is-active {
    display: block;
  }

  .section-head {
    display: block;
  }

  .section-actions,
  .carousel-tools {
    margin-top: 18px;
  }

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

  .ranking-list,
  .detail-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    height: 64px;
    padding: 0 16px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-grid,
  .movie-grid.dense,
  .movie-grid.search-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-rail .movie-card {
    min-width: 82vw;
    max-width: 82vw;
  }

  .ranking-row {
    grid-template-columns: 44px 98px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .ranking-row img {
    width: 98px;
    height: 66px;
  }

  .content-block,
  .side-card {
    padding: 22px;
  }

  .related-item {
    grid-template-columns: 96px 1fr;
  }

  .related-poster {
    width: 96px;
    height: 64px;
  }
}
