:root {
  --red-950: #450a0a;
  --red-900: #7f1d1d;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-100: #fee2e2;
  --red-50: #fef2f2;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 12px 28px rgba(17, 24, 39, 0.14);
  --shadow-lg: 0 24px 60px rgba(69, 10, 10, 0.25);
  --radius: 18px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red-600), var(--red-900));
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.32);
}

.brand-text {
  font-size: 1.2rem;
}

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

.nav-link {
  padding: 9px 14px;
  color: var(--gray-600);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red-700);
  background: var(--red-50);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--gray-900);
  border-radius: 12px;
  background: var(--gray-100);
  cursor: pointer;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(248, 113, 113, 0.36), transparent 28%),
    linear-gradient(120deg, var(--red-950), var(--red-800) 54%, var(--red-700));
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
  padding: 72px 0;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  color: #fee2e2;
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  color: #fecaca;
  border: 1px solid rgba(254, 202, 202, 0.34);
  border-radius: 999px;
  background: rgba(69, 10, 10, 0.32);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-search,
.search-panel,
.filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-search {
  max-width: 620px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-search input,
.search-panel input,
.filter-bar input,
.search-panel select,
.filter-bar select {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
  padding: 12px 14px;
  outline: none;
}

.hero-search input {
  color: var(--white);
  border-color: transparent;
  background: transparent;
}

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

.hero-search button,
.search-panel button,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-search button,
.search-panel button,
.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  box-shadow: 0 14px 28px rgba(127, 29, 29, 0.32);
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.primary-button:hover,
.ghost-button:hover,
.hero-search button:hover,
.search-panel button:hover {
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-grid {
  display: grid;
  min-height: 520px;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.hero-tile {
  position: relative;
  min-height: 198px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.hero-tile-large {
  grid-column: span 3;
  grid-row: span 2;
}

.hero-tile:not(.hero-tile-large) {
  grid-column: span 2;
}

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

.hero-tile:hover img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.88), rgba(3, 7, 18, 0.2), transparent);
}

.hero-content {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
}

.hero-content em,
.timeline-item em,
.rank-info em,
.category-overview-card em {
  color: #fecaca;
  font-style: normal;
  font-size: 0.84rem;
}

.hero-content strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-tile-large .hero-content strong {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.hero-content small {
  color: #e5e7eb;
}

.section-block {
  padding: 58px 0;
  background: var(--gray-50);
}

.white-block {
  background: var(--white);
}

.soft-red-block {
  background: linear-gradient(180deg, var(--red-50), var(--gray-50));
}

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

.section-heading.tight {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--red-700);
  font-weight: 700;
}

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

.category-card {
  display: grid;
  gap: 8px;
  min-height: 124px;
  align-content: center;
  padding: 22px;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red-500, #ef4444), var(--red-700));
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.movie-card:hover,
.timeline-item:hover,
.ranking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card strong {
  font-size: 1.08rem;
}

.category-card span {
  color: #fee2e2;
  font-size: 0.9rem;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-900), var(--gray-900));
}

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

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

.category-pill,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--white);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
}

.category-pill {
  right: 12px;
}

.rank-badge {
  left: 12px;
  background: rgba(17, 24, 39, 0.82);
}

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--red-700);
}

.movie-one-line {
  min-height: 46px;
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--gray-500);
  font-size: 0.85rem;
}

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

.tag-row span,
.detail-tags a {
  display: inline-flex;
  padding: 4px 9px;
  color: var(--gray-700);
  border-radius: 999px;
  background: var(--gray-100);
  font-size: 0.78rem;
}

.horizontal-scroll {
  display: grid;
  grid-auto-columns: minmax(220px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll .movie-card {
  min-width: 220px;
  scroll-snap-align: start;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 17px;
  width: 2px;
  background: #fecaca;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  margin-left: 48px;
  padding: 14px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-dot {
  position: absolute;
  top: 24px;
  left: -40px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--red-700);
  box-shadow: 0 0 0 3px #fecaca;
}

.timeline-item img {
  width: 130px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

.timeline-item strong {
  display: block;
  color: var(--gray-900);
  font-size: 1rem;
}

.timeline-item small {
  color: var(--gray-600);
}

.ranking-panel {
  position: sticky;
  top: 88px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.ranking-list {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 40px 70px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.rank-row:hover {
  background: var(--red-50);
}

.rank-row img {
  width: 70px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-number {
  color: var(--red-700);
  font-weight: 900;
  font-size: 1.1rem;
}

.rank-info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  color: var(--gray-500);
}

.rank-score {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(248, 113, 113, 0.34), transparent 30%),
    linear-gradient(135deg, var(--red-900), var(--red-700));
  padding: 48px 0;
}

.page-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 850px;
  margin: 0;
  color: #fee2e2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

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

.category-overview-card {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-overview-link {
  display: grid;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-700), var(--red-950));
}

.category-overview-link span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.category-overview-card h2 {
  margin: 0;
  font-size: 1.65rem;
}

.category-overview-card p {
  margin: 0;
  color: #fee2e2;
}

.category-overview-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px 24px 24px;
  list-style: none;
}

.category-overview-card li a:hover {
  color: var(--red-700);
}

.filter-bar,
.search-panel {
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-bar select,
.search-panel select {
  flex: 0 1 180px;
}

.empty-state,
.search-summary {
  padding: 20px;
  color: var(--gray-600);
  border: 1px dashed var(--gray-300);
  border-radius: 18px;
  background: var(--white);
  text-align: center;
}

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

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

.ranking-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.ranking-cover img {
  width: 150px;
  height: 96px;
  object-fit: cover;
}

.ranking-cover span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  border-radius: 10px;
  background: var(--red-700);
  font-weight: 900;
}

.ranking-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.ranking-card h2 a:hover {
  color: var(--red-700);
}

.ranking-card p {
  margin: 0 0 12px;
  color: var(--gray-600);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-950);
  padding: 34px 0 44px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: blur(22px);
  transform: scale(1.08);
}

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

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.94), rgba(127, 29, 29, 0.72));
}

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

.detail-title-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-top: 24px;
}

.detail-cover {
  width: 220px;
  height: 310px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.detail-title-row h1 {
  margin: 14px 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-title-row p {
  max-width: 850px;
  margin: 0 0 16px;
  color: #fee2e2;
  font-size: 1.08rem;
}

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

.detail-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

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

.detail-main-card,
.related-panel {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.player-box {
  position: relative;
  overflow: hidden;
  background: var(--gray-950);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: var(--gray-950);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 52px;
  border: 0;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-600), var(--red-900));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.player-box.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.player-message {
  position: absolute;
  right: 14px;
  bottom: 10px;
  left: 14px;
  margin: 0;
  color: #fecaca;
  font-size: 0.86rem;
  text-align: center;
}

.detail-content {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.detail-content h2,
.related-panel h2 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.detail-content p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1rem;
}

.detail-content blockquote {
  margin: 0;
  padding: 18px 20px;
  color: var(--gray-700);
  border-left: 5px solid var(--red-700);
  border-radius: 14px;
  background: var(--red-50);
}

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

.info-list div {
  padding: 14px;
  border-radius: 14px;
  background: var(--gray-50);
}

.info-list dt {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.info-list dd {
  margin: 4px 0 0;
  color: var(--gray-900);
  font-weight: 800;
}

.related-panel {
  position: sticky;
  top: 88px;
  padding: 20px;
}

.related-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.related-grid .movie-card {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.related-grid .poster-wrap {
  height: 100%;
  min-height: 145px;
  border-radius: 0;
}

.related-grid .movie-one-line,
.related-grid .tag-row {
  display: none;
}

.site-footer {
  color: #d1d5db;
  background: var(--gray-950);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.1fr;
  gap: 32px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

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

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

[hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-shell,
  .split-layout,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 420px;
  }

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

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

  .ranking-panel,
  .related-panel {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    right: 12px;
    left: 12px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    border-radius: 12px;
  }

  .hero-shell {
    padding: 42px 0;
  }

  .hero-grid {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-tile,
  .hero-tile-large,
  .hero-tile:not(.hero-tile-large) {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .hero-search,
  .search-panel,
  .filter-bar,
  .section-heading,
  .rank-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-search button,
  .search-panel button,
  .hero-search input,
  .search-panel input,
  .filter-bar input,
  .search-panel select,
  .filter-bar select {
    width: 100%;
  }

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

  .poster-wrap {
    height: 260px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item img {
    width: 100%;
    height: 180px;
  }

  .rank-row {
    display: grid;
    grid-template-columns: 34px 70px 1fr;
  }

  .rank-score {
    grid-column: 2 / -1;
  }

  .ranking-card,
  .detail-title-row,
  .info-list,
  .related-grid .movie-card {
    grid-template-columns: 1fr;
  }

  .ranking-cover img,
  .detail-cover {
    width: 100%;
  }

  .detail-cover {
    height: auto;
    max-height: 420px;
  }

  .related-grid .poster-wrap {
    height: 220px;
  }
}
