:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-400: #f59e0b;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --soft-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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.94);
  border-bottom: 1px solid rgba(245, 158, 11, 0.18);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.34);
  transition: transform 0.25s ease;
}

.logo:hover .logo-mark,
.footer-logo:hover .logo-mark {
  transform: scale(1.08) rotate(6deg);
}

.logo-text,
.footer-logo span:last-child {
  font-size: 26px;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  position: relative;
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-600);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--amber-50);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--gray-700);
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: var(--amber-50);
  color: var(--amber-600);
}

.hero,
.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), #fff7ed 48%, var(--amber-50));
}

.hero {
  min-height: 590px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: center;
  min-height: 590px;
  padding: 52px 0;
}

.blob {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  mix-blend-mode: multiply;
  filter: blur(38px);
  opacity: 0.32;
  animation: blob 8s infinite;
}

.blob-one {
  top: 72px;
  left: 8%;
  background: #fbbf24;
}

.blob-two {
  top: 170px;
  right: 7%;
  background: #fb923c;
  animation-delay: 1.8s;
}

.blob-three {
  bottom: -80px;
  left: 45%;
  background: #fde68a;
  animation-delay: 3.2s;
}

@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(28px, -42px) scale(1.08);
  }

  66% {
    transform: translate(-24px, 26px) scale(0.94);
  }
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  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 {
  margin: 0 0 12px;
  color: var(--amber-600);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero h1::first-line {
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h2 {
  margin: 0 0 18px;
  color: var(--gray-800);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
}

.hero-summary {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--gray-600);
  font-size: 19px;
}

.tag-list,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.tag-list span,
.detail-tags a,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
}

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

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

.primary-btn {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.ghost-btn,
.section-link {
  color: var(--amber-600);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.12);
}

.hero-art {
  position: relative;
  display: block;
  isolation: isolate;
}

.hero-art img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-art:hover img {
  transform: rotate(0deg) translateY(-5px);
}

.hero-art-glow {
  position: absolute;
  inset: 28px -18px -18px 18px;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-600));
  opacity: 0.38;
  filter: blur(12px);
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.hero-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--gray-800);
  font-weight: 800;
}

.hero-search div {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  background: var(--white);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 18px;
  background: transparent;
}

.hero-search button {
  border: 0;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  cursor: pointer;
  font-weight: 800;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--amber-600);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  font-size: 28px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.24);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
}

.section {
  padding: 72px 0;
}

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

.soft-section {
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.category-section {
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
}

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

.section-heading h2,
.page-hero h1,
.detail-info-card h1,
.detail-content h2 {
  margin: 0;
  color: var(--gray-900);
  line-height: 1.15;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--amber-100), #fed7aa);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(217, 119, 6, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-badge,
.card-region,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  right: 10px;
  top: 10px;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
}

.card-region {
  left: 10px;
  top: 10px;
  background: rgba(17, 24, 39, 0.68);
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  background: rgba(217, 119, 6, 0.92);
}

.movie-info {
  display: block;
  padding: 12px 13px 14px;
}

.movie-info strong,
.movie-info span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-info strong {
  color: var(--gray-900);
  font-size: 15px;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-info strong {
  color: var(--amber-600);
}

.movie-info span {
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 13px;
}

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

.category-tile,
.category-card-large {
  display: block;
  min-height: 150px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(245, 158, 11, 0.16);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile span,
.category-card-large span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber-600);
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong,
.category-card-large p {
  display: block;
  margin: 0;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
}

.category-card-large strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--amber-600);
}

.page-hero {
  padding: 78px 0 82px;
}

.page-hero-inner {
  position: relative;
  max-width: 780px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 58px);
}

.page-hero p:last-child {
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--gray-600);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--amber-600);
  font-weight: 800;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 160px 160px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  outline: none;
  padding: 0 14px;
  color: var(--gray-700);
  background: var(--white);
}

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

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

.empty-state {
  display: none;
  margin-top: 30px;
  padding: 40px;
  border-radius: 20px;
  color: var(--gray-600);
  text-align: center;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 60px 76px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.rank-num {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  font-weight: 900;
}

.rank-row img {
  width: 76px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--amber-100);
}

.rank-main strong,
.rank-main em {
  display: block;
}

.rank-main strong {
  color: var(--gray-900);
  font-size: 18px;
}

.rank-main em {
  margin-top: 6px;
  color: var(--gray-600);
  font-style: normal;
}

.rank-meta {
  color: var(--amber-600);
  font-weight: 800;
  white-space: nowrap;
}

.detail-hero {
  padding: 34px 0 52px;
}

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

.player-card,
.detail-info-card,
.detail-content article,
.detail-content aside {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.player-card {
  overflow: hidden;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #050505;
  object-fit: contain;
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.player-start span {
  display: inline-block;
  margin-left: 4px;
  font-size: 30px;
}

.player-start:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.player-box.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.player-message {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.68);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.player-message.is-visible {
  opacity: 1;
}

.detail-info-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.detail-info-card img {
  width: 120px;
  height: 166px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--amber-100);
}

.detail-info-card h1 {
  margin-bottom: 12px;
  font-size: 30px;
}

.detail-info-card p {
  color: var(--gray-600);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.detail-tags {
  margin-bottom: 0;
}

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

.detail-content article,
.detail-content aside {
  padding: 28px;
}

.detail-content h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.detail-content p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 17px;
}

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

.mini-related .movie-card {
  box-shadow: none;
  border: 1px solid var(--gray-200);
}

.site-footer {
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
  border-top: 1px solid rgba(245, 158, 11, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  padding: 52px 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 18px;
}

.site-footer p,
.footer-links a {
  color: var(--gray-600);
  font-size: 14px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

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

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--gray-600);
  text-align: center;
  font-size: 14px;
}

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

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

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

  .hero-slide {
    min-height: 610px;
  }

  .hero-art {
    max-width: 260px;
  }

  .hero-panel {
    align-self: end;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  body.nav-open .mobile-nav {
    display: block;
  }

  .header-inner {
    height: 62px;
  }

  .logo-text,
  .footer-logo span:last-child {
    font-size: 22px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    display: block;
    min-height: 780px;
    padding: 42px 0;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-art {
    max-width: 210px;
  }

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

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

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

  .hero-panel {
    margin-top: 16px;
    padding: 18px;
  }

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

  .cards-grid,
  .category-grid,
  .category-overview-grid,
  .mini-related,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-row {
    grid-template-columns: 46px 68px minmax(0, 1fr);
  }

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

@media (max-width: 560px) {
  .container,
  .header-inner {
    width: min(100% - 22px, 1180px);
  }

  .section {
    padding: 48px 0;
  }

  .cards-grid,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

  .detail-info-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .detail-info-card img {
    width: 90px;
    height: 126px;
  }

  .detail-info-card h1 {
    font-size: 24px;
  }

  .detail-content article,
  .detail-content aside {
    padding: 20px;
  }

  .rank-row {
    grid-template-columns: 40px 62px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .rank-row img {
    width: 62px;
    height: 84px;
  }

  .rank-main strong {
    font-size: 16px;
  }

  .rank-main em {
    display: none;
  }
}
