:root {
  color-scheme: light;
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --soft: #fef3c7;
  --line: #e5e7eb;
  --brand: #d97706;
  --brand-strong: #b45309;
  --brand-hot: #ea580c;
  --dark: #0f172a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  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,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-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(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

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

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

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-hot));
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

.logo-text {
  font-size: 22px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: #374151;
}

.nav-link {
  padding: 9px 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff7ed;
  border-radius: 14px;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--brand-strong);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-link {
  padding: 12px 6px;
  color: #374151;
  font-weight: 700;
  border-bottom: 1px solid #f1f5f9;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #92400e;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.26), transparent 24%), linear-gradient(180deg, rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0.52));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  align-items: center;
  min-height: 560px;
  gap: 48px;
  padding-top: 56px;
}

.hero-copy {
  max-width: 760px;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

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

.hero-copy p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 22px);
}

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

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

.hero-tags span,
.genre-row span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 12px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
}

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

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

.primary-btn,
.search-panel button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-hot));
  box-shadow: 0 16px 28px rgba(180, 83, 9, 0.25);
  border: 0;
}

.secondary-btn {
  color: #92400e;
  background: rgba(255, 255, 255, 0.92);
}

.primary-btn:hover,
.secondary-btn:hover,
.search-panel button:hover,
.section-more:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.62);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 158px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-controls button {
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 28px;
}

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

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  padding: 0;
  font-size: 0 !important;
  background: rgba(255, 255, 255, 0.38) !important;
}

.hero-dot.is-active {
  width: 30px !important;
  background: #ffffff !important;
}

.hero-search-wrap {
  position: relative;
  z-index: 5;
  padding-top: 510px;
  padding-bottom: 34px;
}

.hero-search-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-search-card strong {
  display: block;
  color: #92400e;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-search-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.search-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.search-panel input,
.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  padding: 0 14px;
}

.search-panel input:focus,
.filter-row input:focus,
.filter-row select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 8;
  display: none;
  max-height: 360px;
  overflow: auto;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.search-results.is-open {
  display: grid;
  gap: 8px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 9px;
  border-radius: 14px;
}

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

.search-result-item img {
  width: 52px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
}

.search-result-item strong {
  color: var(--ink);
  font-size: 15px;
}

.search-result-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-chip-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip-row a {
  padding: 9px 14px;
  color: #92400e;
  background: #fff7ed;
  border-radius: 999px;
  font-weight: 800;
}

.main-space {
  padding: 68px 0;
}

.main-space > section + section {
  margin-top: 76px;
}

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

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.04em;
}

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

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-hot));
  border-radius: 13px;
  font-weight: 900;
}

.section-more,
.text-link {
  min-height: 40px;
  color: #92400e;
  background: #fff7ed;
}

.feature-section {
  padding: 36px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  border-radius: 32px;
}

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.72));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.92);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.movie-meta span,
.movie-meta a {
  padding: 3px 8px;
  background: #f8fafc;
  border-radius: 999px;
}

.movie-card-title,
.rank-copy h2 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.movie-card-title a:hover,
.rank-copy h2 a:hover {
  color: var(--brand);
}

.movie-card-body p,
.rank-copy p,
.category-panel p,
.category-overview-card p,
.content-card p,
.side-card dd {
  color: var(--muted);
}

.movie-card-body p {
  min-height: 46px;
  margin: 0 0 12px;
  font-size: 14px;
}

.tag-row span,
.detail-tags a,
.genre-row span {
  padding: 5px 9px;
  color: #92400e;
  background: #fff7ed;
}

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

.category-panel,
.category-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  min-height: 220px;
  overflow: hidden;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-panel span,
.category-overview-copy span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.category-panel h3,
.category-overview-card h2 {
  margin: 6px 0 10px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.category-posters,
.overview-posters {
  position: relative;
  min-height: 166px;
}

.category-posters img,
.overview-posters img {
  position: absolute;
  width: 92px;
  height: 126px;
  border: 4px solid #ffffff;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
}

.category-posters img:nth-child(1),
.overview-posters a:nth-child(1) img {
  right: 84px;
  top: 4px;
  transform: rotate(-9deg);
}

.category-posters img:nth-child(2),
.overview-posters a:nth-child(2) img {
  right: 38px;
  top: 24px;
  transform: rotate(4deg);
}

.category-posters img:nth-child(3),
.overview-posters a:nth-child(3) img {
  right: 0;
  top: 58px;
  transform: rotate(11deg);
}

.category-posters img:nth-child(4),
.overview-posters a:nth-child(4) img {
  right: 116px;
  top: 70px;
  transform: rotate(-2deg);
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ranking-list li a {
  display: grid;
  grid-template-columns: 54px 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-hot));
  border-radius: 14px;
  font-weight: 900;
}

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

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

.rank-info strong {
  font-size: 17px;
}

.rank-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.page-hero,
.detail-top {
  padding: 76px 0;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.amber-page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, #b45309, #ea580c);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: inherit;
  opacity: 0.86;
  font-size: 18px;
}

.filter-card,
.content-card,
.side-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.filter-card {
  margin-bottom: 26px;
}

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

.filter-row label span {
  display: block;
  margin-bottom: 7px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.filter-status {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.rank-cover {
  position: relative;
  display: block;
}

.rank-cover img {
  width: 128px;
  height: 174px;
  border-radius: 18px;
  object-fit: cover;
}

.rank-cover .rank-num {
  position: absolute;
  left: -8px;
  top: -8px;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
  color: #92400e;
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster img {
  width: 280px;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-copy p {
  max-width: 800px;
  margin: 18px 0 24px;
  color: #475569;
  font-size: 19px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.detail-meta-grid div {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.detail-meta-grid strong,
.detail-meta-grid span,
.detail-meta-grid a {
  display: block;
}

.detail-meta-grid strong {
  color: var(--muted);
  font-size: 12px;
}

.detail-meta-grid span,
.detail-meta-grid a {
  color: var(--ink);
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 42px 0 76px;
}

.detail-main {
  display: grid;
  gap: 22px;
}

.player-card {
  overflow: hidden;
  background: #020617;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.player-shell {
  position: relative;
  background: #020617;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.62));
  border: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-layer span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--brand), var(--brand-hot));
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.35);
  font-size: 30px;
}

.play-layer strong {
  font-size: 18px;
}

.player-card.is-playing .play-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.content-card p {
  margin: 0;
  font-size: 17px;
}

.detail-tags {
  margin-top: 18px;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-card div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.side-card dt {
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.related-section {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

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

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

.site-footer p {
  margin: 16px 0 0;
  color: #94a3b8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

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

[hidden] {
  display: none !important;
}

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-inner {
    padding-top: 42px;
  }

  .hero-poster {
    display: none;
  }

  .hero-search-wrap {
    padding-top: 500px;
  }

  .hero-search-card,
  .detail-hero,
  .filter-row {
    grid-template-columns: 1fr;
  }

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

  .detail-side {
    order: 3;
  }
}

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

  .header-inner {
    height: 64px;
  }

  .logo-text {
    font-size: 18px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-search-wrap {
    padding-top: 455px;
  }

  .hero-controls {
    bottom: 246px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

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

  .feature-section {
    padding: 18px;
    border-radius: 24px;
  }

  .movie-grid,
  .feature-grid,
  .category-grid,
  .category-overview-grid,
  .ranking-list,
  .rank-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .category-panel,
  .category-overview-card,
  .rank-card {
    grid-template-columns: 1fr;
  }

  .category-posters,
  .overview-posters {
    min-height: 190px;
  }

  .detail-hero {
    gap: 22px;
  }

  .detail-poster img {
    width: 210px;
  }

  .rank-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}
