:root {
  --color-primary: 14 165 233;
  --color-secondary: 249 115 22;
  --color-accent: 34 197 94;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--neutral-50);
  color: var(--neutral-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(229, 229, 229, 0.8);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgb(var(--color-primary)), rgb(var(--color-accent)));
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.28);
  font-size: 14px;
}

.brand-text {
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--neutral-700);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  padding: 9px 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: rgb(var(--color-primary));
  background: rgb(var(--color-primary) / 0.09);
}

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

.site-search-form input,
.filter-controls input,
.filter-controls select {
  height: 42px;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  color: var(--neutral-900);
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search-form input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
  border-color: rgb(var(--color-primary));
  box-shadow: 0 0 0 4px rgb(var(--color-primary) / 0.12);
}

.site-search-form button {
  height: 42px;
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  color: #fff;
  font-weight: 700;
  background: rgb(var(--color-primary));
  box-shadow: 0 10px 22px rgb(var(--color-primary) / 0.22);
}

.nav-toggle {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--neutral-100);
  color: var(--neutral-700);
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--neutral-200);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-nav nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

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

.mobile-search input {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--neutral-900);
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-bg,
.detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgb(var(--color-primary) / 0.38), transparent 34%),
    linear-gradient(90deg, rgba(8, 13, 26, 0.92), rgba(8, 13, 26, 0.7) 46%, rgba(8, 13, 26, 0.28));
}

.hero-content {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 56px;
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgb(var(--color-primary));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-title-block h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-desc,
.page-hero p,
.detail-title-block p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-tags,
.tag-row,
.tag-cloud,
.page-hero-links,
.side-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.tag-row span,
.tag-cloud a,
.page-hero-links a,
.side-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 11px;
  color: rgb(var(--color-primary));
  background: rgb(var(--color-primary) / 0.1);
  font-size: 13px;
  font-weight: 700;
}

.hero .hero-tags span {
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

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

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

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, rgb(var(--color-primary)), rgb(var(--color-accent)));
  box-shadow: 0 18px 36px rgb(var(--color-primary) / 0.28);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  width: min(100%, 360px);
  justify-self: center;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

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

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

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, 62vw);
}

.hero-thumb {
  position: relative;
  min-height: 72px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.68;
}

.hero-thumb.is-active {
  opacity: 1;
  box-shadow: 0 0 0 2px rgb(var(--color-primary));
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68);
}

.hero-thumb span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-spacing {
  padding: 72px 0;
}

.bg-white {
  background: #fff;
}

.bg-neutral-50 {
  background: var(--neutral-50);
}

.bg-neutral-900 {
  background: var(--neutral-900);
}

.bg-gradient-panel {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgb(var(--color-primary) / 0.45), transparent 32%),
    linear-gradient(135deg, #082f49, #064e3b 72%, #172554);
}

.text-invert {
  color: #fff;
}

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

.section-heading h2,
.filter-panel h2,
.tag-cloud-panel h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-more {
  color: rgb(var(--color-primary));
  font-weight: 800;
}

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

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

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

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

.movie-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(229, 229, 229, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgb(var(--color-primary) / 0.35);
  box-shadow: var(--shadow-soft);
}

.text-invert .movie-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.poster-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100));
}

.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-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.38));
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, rgb(var(--color-secondary)), #ef4444);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--neutral-500);
  font-size: 12px;
  font-weight: 700;
}

.text-invert .card-meta,
.text-invert .movie-card p {
  color: rgba(255, 255, 255, 0.66);
}

.movie-card h3 {
  margin: 0;
  color: var(--neutral-900);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.text-invert .movie-card h3 {
  color: #fff;
}

.movie-card p {
  margin: 10px 0 16px;
  color: var(--neutral-600);
  font-size: 14px;
}

.tag-row {
  margin-top: auto;
}

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

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--neutral-900);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-card strong,
.category-card em {
  position: relative;
  z-index: 1;
  color: #fff;
}

.category-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.category-card em {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 14px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgb(var(--color-primary) / 0.42), transparent 32%),
    linear-gradient(135deg, #082f49, #171717 62%, #064e3b);
}

.page-hero {
  padding: 84px 0;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero-links {
  margin-top: 28px;
}

.page-hero-links a {
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.13);
}

.filter-panel {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-controls input {
  min-width: 260px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.ranking-number {
  color: rgb(var(--color-primary));
  font-size: 22px;
  font-weight: 900;
}

.ranking-title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.top-rank-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 18px;
}

.top-rank-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111827;
}

.top-rank-card:first-child {
  min-height: 360px;
}

.top-rank-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.top-rank-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.top-rank-card span,
.top-rank-card strong,
.top-rank-card em {
  position: relative;
  z-index: 1;
}

.top-rank-card span {
  color: rgb(var(--color-primary));
  font-weight: 900;
}

.top-rank-card strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
}

.top-rank-card em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  align-items: center;
  gap: 32px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-search input {
  flex: 1;
  min-width: 0;
}

.search-summary {
  margin-bottom: 28px;
}

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

.detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0 74px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

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

.detail-title-block h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
}

.player-card,
.content-card,
.side-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.player-shell {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), rgba(0, 0, 0, 0.64));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(var(--color-primary)), rgb(var(--color-accent)));
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.4);
  font-size: 30px;
}

.play-layer strong {
  font-size: 20px;
}

.content-card {
  padding: 28px;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.content-card p {
  margin: 0;
  color: var(--neutral-700);
}

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

.info-side-card {
  padding: 22px;
}

.info-side-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.info-side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--neutral-100);
  padding-bottom: 12px;
}

.info-side-card dt {
  color: var(--neutral-500);
}

.info-side-card dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.info-side-card a {
  color: rgb(var(--color-primary));
}

.inline-tags {
  margin-top: 10px;
}

.site-footer {
  padding: 64px 0 28px;
  color: var(--neutral-400);
  background: var(--neutral-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

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

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

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

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 150px;
  }

  .hero-poster {
    display: none;
  }

  .hero-thumbs {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-controls {
    display: block;
  }

  .hero-dots {
    margin-bottom: 12px;
  }

  .movie-grid,
  .feature-grid,
  .related-grid,
  .category-grid,
  .large-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout,
  .cta-panel,
  .footer-grid,
  .top-rank-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container-custom {
    width: min(100% - 24px, 1280px);
  }

  .brand-text {
    font-size: 17px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    min-height: 490px;
    padding-top: 34px;
    padding-bottom: 130px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-title-block h1 {
    font-size: 36px;
  }

  .hero-desc,
  .page-hero p,
  .detail-title-block p {
    font-size: 16px;
  }

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

  .hero-thumb:nth-child(n + 5) {
    display: none;
  }

  .section-spacing {
    padding: 48px 0;
  }

  .section-heading,
  .filter-panel {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 12px;
  }

  .filter-controls {
    margin-top: 18px;
  }

  .filter-controls input,
  .filter-controls select {
    width: 100%;
    min-width: 0;
  }

  .movie-grid,
  .feature-grid,
  .related-grid,
  .category-grid,
  .large-category-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .detail-hero-content {
    padding: 50px 0;
  }

  .ranking-item {
    grid-template-columns: 44px 1fr;
  }

  .ranking-meta {
    grid-column: 2;
  }

  .content-card,
  .info-side-card,
  .filter-panel,
  .cta-panel {
    padding: 20px;
  }
}
