:root {
  --amber: #f59e0b;
  --orange: #f97316;
  --red: #dc2626;
  --teal: #0f766e;
  --blue: #2563eb;
  --purple: #7c3aed;
  --pink: #db2777;
  --green: #16a34a;
  --slate: #475569;
  --dark: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #ffffff;
  --soft: #f8fafc;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, #d97706 0%, #f97316 50%, #d97706 100%);
  box-shadow: 0 12px 32px rgba(124, 45, 18, 0.28);
}

.nav-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(124, 45, 18, 0.22);
}

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

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

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

.desktop-nav a:hover,
.mobile-panel a:hover,
.quick-scroll a:hover {
  color: #fde68a;
}

.nav-search {
  position: relative;
  width: 280px;
  flex: 0 0 auto;
}

.nav-search input,
.mobile-search input,
.page-search-panel input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.nav-search input {
  height: 42px;
  padding: 0 44px 0 18px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.nav-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%);
}

.mobile-menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
  background: rgba(146, 64, 14, 0.36);
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-search {
  display: flex;
  gap: 8px;
}

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

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--orange);
  background: #fff;
  font-weight: 800;
}

.quick-categories {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.quick-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  scrollbar-width: none;
}

.quick-scroll::-webkit-scrollbar {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #fff;
  background: radial-gradient(circle at 75% 20%, rgba(253, 186, 116, 0.42), transparent 34%), linear-gradient(115deg, #b45309 0%, #ea580c 48%, #991b1b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.08));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  align-items: center;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fffbeb;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero h2 {
  margin: 14px 0 14px;
  color: #fde68a;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
}

.hero p,
.page-hero p,
.detail-copy .lead {
  margin: 0 0 26px;
  max-width: 760px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
}

.hero-tags,
.detail-meta,
.meta-line,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.22);
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 24px;
  color: #b45309;
  background: #fff;
  box-shadow: 0 16px 32px rgba(124, 45, 18, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.movie-card:hover,
.feature-card:hover,
.horizontal-card:hover,
.rank-row:hover {
  transform: translateY(-4px);
}

.ghost-button {
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 36px 80px rgba(39, 15, 3, 0.48);
  transform: rotate(1.2deg);
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.24), rgba(127, 29, 29, 0.28));
}

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

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

.hero-play,
.play-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-play {
  left: 26px;
  bottom: 26px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 38px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

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

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

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head h2 span {
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-more {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--orange);
  background: #fff7ed;
}

.feature-grid,
.horizontal-grid,
.movie-grid,
.category-grid,
.category-overview-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

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

.movie-card,
.feature-card,
.horizontal-card,
.rank-row,
.category-tile,
.category-overview-card,
.story-block,
.player-card {
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card,
.feature-card,
.horizontal-card,
.rank-row {
  overflow: hidden;
}

.movie-card:hover,
.feature-card:hover,
.horizontal-card:hover,
.rank-row:hover {
  box-shadow: var(--shadow);
}

.poster-wrap,
.feature-card-link,
.horizontal-card a,
.rank-row a {
  position: relative;
}

.poster-wrap {
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #f97316);
}

.poster-wrap img,
.feature-card img,
.horizontal-card img,
.rank-row img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover img,
.feature-card:hover img,
.horizontal-card:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
}

.duration-badge,
.poster-category {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.duration-badge {
  top: 10px;
  right: 10px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
}

.poster-category {
  left: 10px;
  bottom: 10px;
  color: #fff;
  background: var(--teal);
}

.card-body {
  padding: 16px;
}

.card-body h3,
.feature-info h3,
.horizontal-card h3,
.rank-copy h2 {
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.card-body h3 {
  font-size: 17px;
}

.card-body p,
.horizontal-card p,
.rank-copy p,
.feature-info p,
.category-tile p,
.category-overview-card p,
.story-block p {
  color: var(--muted);
}

.card-body p,
.horizontal-card p,
.rank-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 12px;
  font-size: 14px;
}

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

.feature-card-link {
  display: block;
  min-height: 360px;
  color: #fff;
  background: #111827;
}

.feature-card img {
  position: absolute;
  inset: 0;
}

.feature-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.feature-info {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
}

.feature-info p,
.feature-info .meta-line {
  color: rgba(255, 255, 255, 0.78);
}

.play-bubble {
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.pill {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.pill-orange {
  color: #fff;
  background: var(--orange);
}

.pill-blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.hot-band {
  background: linear-gradient(90deg, #eff6ff, #ecfeff);
}

.horizontal-card a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 14px;
}

.horizontal-card img {
  height: 136px;
  border-radius: 16px;
  background: linear-gradient(135deg, #bfdbfe, #0891b2);
}

.category-tile,
.category-overview-card {
  display: block;
  overflow: hidden;
  padding: 18px;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.category-covers img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.28);
}

.category-covers.large img {
  min-height: 130px;
}

.category-tile h3,
.category-overview-card h2 {
  margin: 0 0 8px;
}

.category-overview-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.category-overview-card li + li {
  margin-top: 8px;
}

.category-overview-card li a {
  color: var(--orange);
  font-weight: 700;
}

.tone-amber { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.tone-purple { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.tone-red { background: linear-gradient(135deg, #fff1f2, #fee2e2); }
.tone-pink { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }
.tone-green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.tone-blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.tone-slate { background: linear-gradient(135deg, #f8fafc, #e2e8f0); }
.tone-cyan { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.tone-orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.tone-teal { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }
.tone-violet { background: linear-gradient(135deg, #f5f3ff, #ddd6fe); }
.tone-rose { background: linear-gradient(135deg, #fff1f2, #ffe4e6); }

.trend-section {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #16a34a);
}

.trend-section .section-head p,
.trend-section .meta-line {
  color: rgba(255, 255, 255, 0.78);
}

.trend-section .section-more {
  color: #0f766e;
  background: #fff;
}

.page-hero {
  padding: 78px 0;
  color: #fff;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 30%), linear-gradient(110deg, #d97706, #ea580c, #7f1d1d);
}

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

.page-hero p {
  max-width: 780px;
}

.page-search-panel {
  max-width: 680px;
}

.page-search-panel input {
  height: 54px;
  padding: 0 22px;
  font-size: 16px;
}

.page-search-panel input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--dark);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 66px 104px 1fr 54px;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.rank-row img {
  width: 104px;
  height: 78px;
  border-radius: 14px;
  background: #fed7aa;
}

.rank-play {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
}

.detail-top {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111827;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.15);
  transform: scale(1.08);
  opacity: 0.34;
}

.detail-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62));
}

.detail-top-inner {
  position: relative;
  z-index: 1;
  padding: 34px 0 64px;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  min-height: 430px;
  background: linear-gradient(135deg, #fed7aa, #7f1d1d);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
  margin-bottom: 18px;
}

.detail-copy .lead {
  color: rgba(255, 255, 255, 0.82);
}

.detail-meta {
  margin-bottom: 18px;
}

.tag-cloud {
  margin-bottom: 28px;
}

.player-card {
  overflow: hidden;
  padding: 12px;
  background: #0f172a;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.28));
  text-align: center;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.95);
  font-size: 34px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
}

.player-overlay strong {
  font-size: clamp(20px, 3vw, 32px);
  max-width: 760px;
  padding: 0 24px;
}

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

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 0 24px;
}

.story-block {
  padding: 28px;
}

.story-block h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.story-block p {
  margin: 0;
  font-size: 16px;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #111827, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 50px 0;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
}

.site-footer p {
  max-width: 520px;
  color: #94a3b8;
}

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

.site-footer a:not(.footer-logo) {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
}

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

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

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

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

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

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

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

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

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

  .feature-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero,
  .hero-inner {
    min-height: 720px;
  }

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

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

  .hero h2 {
    font-size: 25px;
  }

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

  .movie-grid,
  .movie-grid.compact,
  .horizontal-grid,
  .category-grid,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .horizontal-card a {
    grid-template-columns: 128px 1fr;
  }

  .horizontal-card img {
    height: 116px;
  }

  .rank-row a {
    grid-template-columns: 44px 82px 1fr;
  }

  .rank-play {
    display: none;
  }

  .rank-row img {
    width: 82px;
    height: 68px;
  }

  .detail-poster {
    min-height: 360px;
  }

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