:root {
  --cherry-pink: #ffb7c5;
  --rose: #fb7185;
  --rose-strong: #ec4899;
  --soft-pink: #ffe4e9;
  --light-yellow: #fff4e6;
  --tender-green: #a8d5ba;
  --text: #1f2937;
  --muted: #6b7280;
  --panel: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.42);
  --shadow: 0 20px 40px rgba(255, 183, 197, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--light-yellow), var(--soft-pink), #ffd4e0);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(14px);
  opacity: 0.35;
  z-index: 0;
}

body::before {
  top: 12%;
  left: -90px;
  background: radial-gradient(circle, #ffffff, var(--cherry-pink));
}

body::after {
  right: -110px;
  bottom: 8%;
  background: radial-gradient(circle, #ffffff, #f9a8d4);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 28px rgba(255, 183, 197, 0.22);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-strong), var(--rose));
  box-shadow: 0 12px 22px rgba(236, 72, 153, 0.24);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: rotate(12deg) scale(1.04);
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--rose-strong), var(--rose));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link,
.dropdown-toggle {
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
  color: var(--rose-strong);
  background: rgba(252, 231, 243, 0.85);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 220px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a,
.mobile-panel a {
  padding: 10px 12px;
  border-radius: 14px;
  color: #4b5563;
}

.dropdown-menu a:hover,
.mobile-panel a:hover {
  color: var(--rose-strong);
  background: #fce7f3;
}

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid #fbcfe8;
  border-radius: 999px;
  padding: 4px;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
  border: 0;
  outline: 0;
  color: #374151;
  background: transparent;
}

.header-search input {
  width: 220px;
  padding: 8px 10px 8px 14px;
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-strong), var(--rose));
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fce7f3;
  color: var(--rose-strong);
}

.mobile-panel {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

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

.mobile-panel nav {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #fbcfe8;
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  padding: 8px 10px;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  min-height: 620px;
  margin: 0 auto;
  padding: 54px 24px 72px;
}

.hero-slide {
  position: absolute;
  inset: 54px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 42px;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-copy {
  max-width: 760px;
  animation: fadeIn 0.6s ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-strong);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #111827;
}

.hero-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  color: transparent;
  background: linear-gradient(90deg, var(--rose-strong), var(--rose));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy p:not(.eyebrow),
.page-hero p,
.detail-info p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--rose-strong);
  background: rgba(252, 231, 243, 0.82);
  font-size: 13px;
  font-weight: 650;
}

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose-strong), var(--rose));
  box-shadow: 0 16px 28px rgba(236, 72, 153, 0.25);
}

.ghost-button,
.inline-button {
  color: var(--rose-strong);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
}

.primary-button:hover,
.ghost-button:hover,
.inline-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow);
}

.hero-poster {
  position: relative;
  min-height: 460px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed, #fce7f3);
  box-shadow: 0 28px 70px rgba(236, 72, 153, 0.22);
  border: 1px solid var(--border);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

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

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

.hero-poster span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.no-image {
  background: linear-gradient(135deg, #fff7ed, #fce7f3, #ffe4e6);
}

.hero-dots {
  position: absolute;
  left: 24px;
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.25);
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--rose-strong), var(--rose));
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.42;
  animation: float 4s ease-in-out infinite;
}

.orb-one {
  width: 220px;
  height: 220px;
  right: 12%;
  top: 8%;
  background: #ffffff;
}

.orb-two {
  width: 180px;
  height: 180px;
  left: 8%;
  bottom: 10%;
  background: var(--cherry-pink);
  animation-delay: 1.2s;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.soft-section {
  max-width: none;
  padding-left: max(24px, calc((100% - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100% - 1280px) / 2 + 24px));
  background: linear-gradient(90deg, rgba(253, 242, 248, 0.58), rgba(255, 241, 242, 0.58));
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.03em;
}

.section-heading a {
  color: var(--rose-strong);
  font-weight: 800;
}

.featured-grid,
.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(255, 183, 197, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed, #fce7f3);
}

.movie-card.compact .poster-wrap {
  aspect-ratio: 4 / 5;
}

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

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

.poster-type {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(236, 72, 153, 0.88);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-strong), var(--rose));
}

.movie-card-body {
  padding: 16px;
}

.movie-card h3 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #9ca3af;
  font-size: 13px;
}

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

.tag-row span {
  padding: 4px 8px;
  font-size: 12px;
}

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

.category-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(255, 183, 197, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card span,
.overview-card h2 {
  font-size: 22px;
  font-weight: 850;
  color: var(--rose-strong);
}

.category-card p,
.overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-card div,
.overview-links {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: #4b5563;
  font-size: 14px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 52px 120px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(255, 183, 197, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.rank-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 850;
  background: linear-gradient(135deg, var(--rose-strong), var(--rose));
}

.rank-thumb {
  overflow: hidden;
  height: 78px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed, #fce7f3);
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-item p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-item small {
  color: #9ca3af;
}

.page-hero,
.detail-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 68px 24px 40px;
}

.page-hero {
  text-align: center;
}

.page-hero p {
  max-width: 760px;
  margin: 16px auto 0;
}

.filter-bar,
.search-page-form {
  max-width: 760px;
  margin: 28px auto 0;
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(255, 183, 197, 0.18);
}

.filter-bar input,
.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
}

.filter-bar select {
  padding: 12px 14px;
  border-left: 1px solid #fbcfe8;
}

.overview-list {
  display: grid;
  gap: 22px;
}

.overview-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  padding: 20px;
  border-radius: 30px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(255, 183, 197, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overview-posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.overview-posters a {
  overflow: hidden;
  min-height: 160px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7ed, #fce7f3);
}

.overview-posters img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-body h2 {
  margin: 0 0 10px;
}

.inline-button {
  margin-top: 18px;
}

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

.detail-hero {
  padding-bottom: 60px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--rose-strong);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  min-height: 480px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fff7ed, #fce7f3);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.detail-tags {
  margin: 22px 0 26px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 28px 72px rgba(17, 24, 39, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.28);
  aspect-ratio: 16 / 9;
}

.player-shell video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.player-shell video {
  object-fit: contain;
  background: #111827;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #111827;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.55;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0, rgba(17, 24, 39, 0.42) 60%, rgba(17, 24, 39, 0.78));
}

.play-button {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 36px;
  background: linear-gradient(135deg, var(--rose-strong), var(--rose));
  box-shadow: 0 22px 44px rgba(236, 72, 153, 0.36);
  transition: transform 0.22s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.player-section h2,
.article-section h2 {
  margin: 22px 0 10px;
  font-size: 28px;
}

.player-section p,
.glass-panel p {
  color: var(--muted);
  line-height: 1.9;
}

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

.glass-panel {
  padding: 28px;
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(255, 183, 197, 0.16);
}

.glass-panel h2 {
  margin-top: 0;
}

.empty-tip {
  display: none;
  text-align: center;
  color: #9ca3af;
  padding: 42px 0;
}

.empty-tip.show {
  display: block;
}

.site-footer {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

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

.footer-brand p,
.footer-links a {
  color: var(--muted);
}

.footer-brand p {
  max-width: 460px;
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.footer-links a:hover {
  color: var(--rose-strong);
}

.copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 34px;
  color: #9ca3af;
  border-top: 1px solid rgba(251, 207, 232, 0.7);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mobile-toggle {
    display: block;
  }

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

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

  .hero-slide {
    align-content: start;
  }

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

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

  .rank-grid,
  .article-section {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 66px;
    padding: 0 16px;
  }

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

  .hero {
    min-height: 840px;
  }

  .hero-inner {
    min-height: 840px;
    padding: 34px 16px 72px;
  }

  .hero-slide {
    inset: 34px 16px 72px;
    gap: 22px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 340px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
  }

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

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

  .section-heading,
  .filter-bar,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar select {
    border-left: 0;
    border-top: 1px solid #fbcfe8;
  }

  .overview-posters {
    grid-template-columns: repeat(2, 1fr);
  }

  .rank-item {
    grid-template-columns: 42px 88px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-thumb {
    height: 68px;
  }

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

  .play-button {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}
