:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-700: #c2410c;
  --yellow-600: #ca8a04;
  --brown-950: #2a1205;
  --text: #1f2937;
  --muted: #6b7280;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(120, 53, 15, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 48%, #fefce8 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(146, 64, 14, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #facc15, #f59e0b, #f97316);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.35);
  font-size: 24px;
  transition: transform 0.3s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-4deg);
}

.brand-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  background: linear-gradient(90deg, #d97706, #f97316, #ca8a04);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

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

.nav-links a {
  color: #374151;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--amber-600);
}

.global-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(340px, 100%);
}

.global-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.global-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.global-search button,
.primary-button,
.secondary-button,
.mini-button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  font-size: 18px;
}

.secondary-button {
  display: inline-flex;
  width: fit-content;
  color: var(--amber-700);
  background: #fff7ed;
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: none;
}

.global-search button:hover,
.primary-button:hover,
.secondary-button:hover,
.mini-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.35);
}

.global-search-results {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(440px, calc(100vw - 32px));
  max-height: 480px;
  overflow: auto;
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.search-result-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
}

.search-result-item:hover {
  background: #fff7ed;
}

.search-result-item img {
  width: 58px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
  background: #fef3c7;
}

.search-result-item strong,
.search-result-item small {
  display: block;
}

.search-result-item small {
  color: var(--muted);
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #92400e;
}

.category-strip {
  border-top: 1px solid rgba(217, 119, 6, 0.12);
}

.category-strip-inner {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0 12px;
  color: #7c2d12;
  font-size: 14px;
  font-weight: 700;
}

.category-strip a {
  white-space: nowrap;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  height: 72vh;
  overflow: hidden;
  background: #1c0f05;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(251, 191, 36, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  align-items: center;
  gap: 54px;
  color: #ffffff;
}

.hero-copy {
  max-width: 720px;
}

.hero-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff7ed;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(249, 115, 22, 0.95));
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow {
  color: var(--amber-700);
  background: #ffedd5;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero-copy p {
  max-width: 680px;
  margin: 24px 0;
  color: #f3f4f6;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
}

.hero-meta,
.detail-meta,
.ranking-meta,
.wide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-meta span,
.detail-meta span,
.ranking-meta span,
.wide-meta span,
.source-label {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-poster {
  display: block;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #f59e0b;
}

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

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.prose-panel h2,
.info-panel h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

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

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 24px;
}

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

.movie-card {
  min-width: 0;
}

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #fef3c7;
  box-shadow: 0 18px 36px rgba(120, 53, 15, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 58px rgba(120, 53, 15, 0.22);
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-gradient,
.category-card-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68));
}

.year-badge,
.rank-badge,
.play-chip {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.year-badge {
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.58);
}

.rank-badge {
  top: 12px;
  right: 12px;
  background: #ef4444;
}

.play-chip {
  left: 12px;
  right: 12px;
  bottom: 12px;
  text-align: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.94), rgba(249, 115, 22, 0.94));
}

.movie-card-body {
  padding: 14px 4px 0;
}

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card-body h3 a:hover,
.ranking-info h2 a:hover,
.wide-card-body h3 a:hover {
  color: var(--amber-600);
}

.movie-card-body p,
.wide-card-body p,
.category-overview-card p,
.split-showcase p,
.prose-panel p,
.info-panel dd,
.page-hero p {
  color: var(--muted);
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  border-radius: 999px;
  padding: 6px 10px;
  color: #92400e;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
}

.tag-row.large span {
  font-size: 14px;
}

.soft-panel {
  border-radius: var(--radius-xl);
  padding-inline: 30px;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.92), rgba(254, 243, 199, 0.62));
  box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.1);
}

.wide-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 22px;
  overflow-x: auto;
  padding: 4px 4px 24px;
  scroll-snap-type: x proximity;
}

.wide-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(120, 53, 15, 0.12);
  scroll-snap-align: start;
}

.wide-card-cover {
  position: relative;
  display: block;
  overflow: hidden;
}

.wide-card-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.wide-card-cover span {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: #22c55e;
  font-weight: 900;
}

.wide-card-body {
  padding: 18px;
}

.wide-card-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.wide-meta span,
.ranking-meta span {
  color: #92400e;
  background: #ffedd5;
}

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

.category-card,
.category-overview-card a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 180px;
  border-radius: 26px;
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(120, 53, 15, 0.16);
}

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

.category-card:hover img,
.category-overview-card:hover img {
  transform: scale(1.08);
}

.category-card strong,
.category-card small,
.category-overview-card div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
}

.category-card strong {
  bottom: 48px;
  font-size: 24px;
  font-weight: 900;
}

.category-card small {
  bottom: 22px;
  color: #ffedd5;
  font-weight: 800;
}

.category-overview-card a {
  min-height: 280px;
}

.category-overview-card div {
  bottom: 22px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview-card p {
  color: #fff7ed;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 46px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.showcase-stats {
  display: grid;
  gap: 8px;
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #92400e, #f97316);
}

.showcase-stats strong {
  font-size: 44px;
  line-height: 1;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.compact-hero {
  padding: 78px 0 44px;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.28), transparent 25%),
    linear-gradient(135deg, #fff7ed, #fef3c7);
}

.compact-hero h1 {
  margin-bottom: 14px;
}

.compact-hero strong {
  display: inline-flex;
  margin-top: 12px;
  color: #92400e;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  margin-top: 26px;
}

.empty-state {
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 70px 108px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-radius: 24px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(120, 53, 15, 0.1);
}

.ranking-number {
  color: var(--amber-600);
  font-size: 30px;
  text-align: center;
}

.ranking-cover img {
  width: 108px;
  height: 142px;
  border-radius: 18px;
  object-fit: cover;
  background: #fef3c7;
}

.ranking-info h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.detail-hero {
  min-height: 620px;
  color: #ffffff;
  background: #1c0f05;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(251, 191, 36, 0.26), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.32));
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  color: #ffedd5;
  font-size: 14px;
}

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

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

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

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

.detail-copy h1 {
  color: #ffffff;
  font-size: clamp(38px, 6vw, 66px);
}

.detail-one-line {
  max-width: 820px;
  color: #f3f4f6;
  font-size: 20px;
  line-height: 1.8;
}

.player-section {
  padding: 72px 0 32px;
}

.source-label {
  color: #92400e;
  background: #ffedd5;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  cursor: pointer;
}

.video-play-overlay span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-size: 42px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

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

.video-shell.is-playing .video-play-overlay {
  display: none;
}

.video-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 16px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 40px 0;
}

.prose-panel,
.info-panel {
  border-radius: 28px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(120, 53, 15, 0.1);
}

.prose-panel h2,
.info-panel h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 28px;
}

.info-panel dl {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px 12px;
  margin: 0;
}

.info-panel dt {
  color: #92400e;
  font-weight: 900;
}

.info-panel dd {
  margin: 0;
}

.sitemap-grid {
  columns: 2 420px;
  column-gap: 28px;
}

.sitemap-section {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
  border-radius: 24px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(120, 53, 15, 0.08);
}

.sitemap-section h2 {
  margin: 0 0 14px;
  color: #92400e;
}

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

.sitemap-section a:hover {
  color: var(--amber-600);
}

.sitemap-section small {
  color: var(--muted);
}

.site-footer {
  margin-top: 60px;
  color: #ffffff;
  background: linear-gradient(90deg, #78350f, #7c2d12, #713f12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 54px 0 34px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
  color: #fde68a;
}

.footer-grid h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: #fde68a;
}

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

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 230, 138, 0.18);
  padding: 20px 16px 28px;
  text-align: center;
}

body.search-active .site-header {
  z-index: 120;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .nav-panel {
    display: flex;
  }

  .nav-links {
    display: grid;
    gap: 12px;
  }

  .global-search {
    width: 100%;
  }

  .hero-content,
  .detail-layout,
  .detail-content,
  .split-showcase,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

  .brand-copy strong {
    font-size: 20px;
  }

  .hero-carousel,
  .detail-hero {
    min-height: 560px;
    height: auto;
  }

  .hero-content {
    min-height: 560px;
    padding: 42px 0 70px;
  }

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

  .hero-copy p,
  .detail-one-line {
    font-size: 17px;
  }

  .hero-meta span,
  .detail-meta span {
    font-size: 12px;
  }

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

  .section-block {
    padding: 46px 0;
  }

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

  .movie-card-body p,
  .tag-row {
    display: none;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 46px 78px 1fr;
    gap: 12px;
  }

  .ranking-cover img {
    width: 78px;
    height: 104px;
    border-radius: 14px;
  }

  .ranking-info h2 {
    font-size: 18px;
  }

  .ranking-info p,
  .mini-button {
    display: none;
  }

  .detail-poster {
    max-width: 240px;
  }

  .prose-panel,
  .info-panel {
    padding: 22px;
  }

  .wide-scroll {
    grid-auto-columns: minmax(260px, 84vw);
  }
}
