:root {
  --stellar-dark: #0a0e27;
  --stellar-deep: #141b3d;
  --stellar-mid: #1e2847;
  --stellar-light: #2a3857;
  --stellar-glow: #4a90e2;
  --stellar-soft: rgba(74, 144, 226, 0.18);
  --text-main: #ffffff;
  --text-muted: #a8b3cf;
  --text-soft: #d6ddf2;
  --border-soft: rgba(42, 56, 87, 0.55);
  --shadow-glow: 0 0 24px rgba(74, 144, 226, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background: var(--stellar-dark);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 1px solid rgba(42, 56, 87, 0.55);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--stellar-glow), #0ea5e9);
  box-shadow: var(--shadow-glow);
  font-size: 14px;
  padding-left: 2px;
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  color: var(--text-soft);
  transition: 0.2s ease;
}

.nav-link {
  min-height: 38px;
  padding: 0 14px;
}

.nav-link:hover,
.mobile-nav-link:hover {
  color: #ffffff;
  background: var(--stellar-mid);
}

.site-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  width: min(360px, 34vw);
  border: 1px solid rgba(42, 56, 87, 0.7);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(30, 40, 71, 0.8);
}

.site-search input,
.mobile-search input,
.intro-search input,
.catalog-toolbar input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
}

.site-search input {
  padding: 10px 14px;
}

.site-search button,
.mobile-search button,
.intro-search button {
  border: 0;
  color: #ffffff;
  background: var(--stellar-glow);
  transition: 0.2s ease;
}

.site-search button {
  align-self: stretch;
  padding: 0 16px;
}

.site-search button:hover,
.mobile-search button:hover,
.intro-search button:hover {
  background: #0ea5e9;
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: var(--stellar-mid);
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(42, 56, 87, 0.45);
  background: rgba(10, 14, 39, 0.98);
}

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

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 8px;
  display: grid;
  gap: 8px;
}

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

.mobile-search {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  display: flex;
  gap: 8px;
}

.mobile-search input {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(42, 56, 87, 0.7);
  border-radius: 12px;
  background: var(--stellar-mid);
}

.mobile-search button {
  min-width: 76px;
  border-radius: 12px;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--stellar-dark);
}

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

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--stellar-dark), rgba(10, 14, 39, 0.68) 44%, rgba(10, 14, 39, 0.04));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  bottom: 70px;
  width: min(720px, calc(100% - 64px));
  z-index: 2;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(74, 144, 226, 0.86);
  box-shadow: var(--shadow-glow);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

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

.primary-button,
.ghost-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 26px;
  color: #ffffff;
  background: var(--stellar-glow);
  box-shadow: var(--shadow-glow);
}

.primary-button:hover {
  background: #0ea5e9;
  transform: translateY(-1px);
}

.ghost-button,
.section-link {
  min-height: 48px;
  padding: 0 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.ghost-button:hover,
.section-link:hover {
  border-color: rgba(74, 144, 226, 0.75);
  background: rgba(74, 144, 226, 0.18);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

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

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

.intro-panel {
  width: min(1180px, calc(100% - 32px));
  margin: -38px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(42, 56, 87, 0.65);
  border-radius: 28px;
  background: rgba(20, 27, 61, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.intro-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

.intro-copy p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.intro-search {
  align-self: center;
  display: flex;
  min-height: 58px;
  border: 1px solid rgba(74, 144, 226, 0.42);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 14, 39, 0.7);
}

.intro-search input {
  padding: 0 18px;
}

.intro-search button {
  min-width: 120px;
}

.content-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.alt-section {
  width: 100%;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, var(--stellar-dark), var(--stellar-deep));
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

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

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

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

.movie-card {
  min-width: 0;
  display: block;
  color: #ffffff;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 22px;
  background: var(--stellar-mid);
  border: 1px solid rgba(42, 56, 87, 0.6);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.04));
}

.poster-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(74, 144, 226, 0.92);
  opacity: 0;
  box-shadow: var(--shadow-glow);
  transform: translate(-50%, -50%) scale(0.86);
  transition: 0.25s ease;
  padding-left: 4px;
}

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

.poster-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poster-badges span,
.tag-list span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(10, 14, 39, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.poster-badges span:first-child {
  background: rgba(74, 144, 226, 0.88);
}

.poster-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
}

.poster-info strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 1.36em;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.poster-info em {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(178px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.compact-card .poster-info strong {
  font-size: 16px;
}

.category-strip-stack {
  display: grid;
  gap: 38px;
}

.strip-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.strip-title h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.strip-title a,
.quick-links a,
.category-card-links a {
  color: var(--stellar-glow);
  font-weight: 700;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 18px;
  border: 1px solid rgba(42, 56, 87, 0.65);
  border-radius: 18px;
  background: rgba(20, 27, 61, 0.7);
  transition: 0.2s ease;
}

.rank-item:hover,
.ranking-card:hover,
.category-card:hover {
  border-color: rgba(74, 144, 226, 0.75);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.rank-number,
.ranking-index {
  color: var(--stellar-glow);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

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

.rank-meta {
  color: var(--text-muted);
  font-size: 13px;
}

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(74, 144, 226, 0.24), transparent 34%),
    linear-gradient(135deg, var(--stellar-dark), var(--stellar-deep));
}

.compact-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 60px 0;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.035em;
}

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

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

.category-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(42, 56, 87, 0.65);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(74, 144, 226, 0.14), rgba(20, 27, 61, 0.82)),
    var(--stellar-deep);
  transition: 0.2s ease;
}

.category-card-main span {
  color: var(--stellar-glow);
  font-weight: 900;
}

.category-card h2 {
  margin: 12px 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.category-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 20px;
  font-size: 13px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.catalog-toolbar input {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(42, 56, 87, 0.72);
  border-radius: 16px;
  background: rgba(20, 27, 61, 0.86);
}

.catalog-toolbar input:focus {
  border-color: var(--stellar-glow);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.13);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: var(--text-muted);
}

.empty-state {
  display: none;
  margin: 36px 0 0;
  padding: 22px;
  border: 1px solid rgba(42, 56, 87, 0.65);
  border-radius: 18px;
  color: var(--text-muted);
  text-align: center;
  background: rgba(20, 27, 61, 0.72);
}

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

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

.ranking-card {
  display: grid;
  grid-template-columns: 62px 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(42, 56, 87, 0.65);
  border-radius: 22px;
  background: rgba(20, 27, 61, 0.72);
  transition: 0.2s ease;
}

.ranking-card img {
  width: 88px;
  height: 118px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--stellar-mid);
}

.ranking-info {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.ranking-info strong {
  font-size: 20px;
  font-weight: 900;
}

.ranking-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-info span {
  color: var(--text-muted);
  font-size: 13px;
}

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 66px 0 46px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(42, 56, 87, 0.72);
  background: var(--stellar-mid);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--stellar-glow);
}

.detail-summary h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.detail-line {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-meta span {
  background: rgba(74, 144, 226, 0.18);
}

.tag-list span {
  color: var(--text-soft);
  background: rgba(20, 27, 61, 0.86);
}

.player-section {
  padding-top: 40px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(74, 144, 226, 0.42);
  background: #000000;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(74, 144, 226, 0.16), rgba(0, 0, 0, 0.66));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play-icon {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(74, 144, 226, 0.94);
  box-shadow: var(--shadow-glow);
  font-size: 32px;
  padding-left: 6px;
}

.player-overlay strong {
  font-size: 20px;
}

.detail-content-section {
  padding-top: 34px;
}

.detail-article {
  padding: 34px;
  border: 1px solid rgba(42, 56, 87, 0.65);
  border-radius: 28px;
  background: rgba(20, 27, 61, 0.72);
}

.detail-article h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
}

.detail-article h2:not(:first-child) {
  margin-top: 30px;
}

.detail-article p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 2;
}

.site-footer {
  border-top: 1px solid rgba(42, 56, 87, 0.55);
  background: var(--stellar-deep);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  gap: 24px;
}

.footer-brand p,
.copyright {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-links,
.compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links a {
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--stellar-glow);
}

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

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

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

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

  .mobile-menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    left: 24px;
    width: calc(100% - 48px);
  }

  .hero-arrow {
    display: none;
  }

  .intro-panel,
  .detail-hero,
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .rank-list {
    grid-template-columns: 1fr;
  }

  .quick-links {
    justify-content: flex-start;
  }

  .detail-cover {
    max-width: 340px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 64px;
  }

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

  .hero {
    height: 78vh;
    min-height: 560px;
  }

  .hero-content {
    bottom: 78px;
  }

  .hero p {
    font-size: 16px;
  }

  .intro-panel,
  .detail-article {
    padding: 22px;
    border-radius: 22px;
  }

  .content-section {
    padding: 52px 0;
  }

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

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

  .ranking-card {
    grid-template-columns: 44px 72px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-card img {
    width: 72px;
    height: 100px;
  }

  .rank-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

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

  .poster-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .poster-info strong {
    font-size: 15px;
  }

  .poster-info em,
  .card-meta {
    font-size: 12px;
  }

  .detail-hero {
    padding-top: 40px;
  }

  .player-play-icon {
    width: 68px;
    height: 68px;
  }
}
