:root {
  --bg: #fff7ed;
  --surface: #ffffff;
  --surface-soft: #fffaf1;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --amber: #f59e0b;
  --yellow: #facc15;
  --shadow: 0 20px 50px rgba(154, 72, 15, 0.16);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fffbeb 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 146, 60, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.18), transparent 30%),
    radial-gradient(circle at 65% 84%, rgba(250, 204, 21, 0.18), transparent 32%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.92);
  border-bottom: 1px solid rgba(251, 146, 60, 0.22);
  box-shadow: 0 12px 35px rgba(154, 72, 15, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.logo-mark svg {
  width: 25px;
  height: 25px;
  fill: #ffffff;
}

.site-logo:hover .logo-mark {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.38);
}

.logo-text {
  display: grid;
  line-height: 1.2;
}

.logo-text strong,
.footer-logo {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #ea580c, #d97706, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--orange-dark);
  background: rgba(255, 237, 213, 0.95);
  transform: translateY(-1px);
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select,
.search-head input {
  width: 100%;
  border: 2px solid rgba(251, 146, 60, 0.28);
  outline: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 11px 14px;
  color: var(--text);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.top-search input {
  width: 230px;
}

.top-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus,
.search-head input:focus {
  border-color: #fb923c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.13);
}

.top-search button,
.mobile-search button,
.search-head button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.28);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.top-search button:hover,
.mobile-search button:hover,
.search-head button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.34);
  filter: saturate(1.05);
}

.secondary-button {
  color: #9a3412;
  background: rgba(255, 237, 213, 0.94);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 237, 213, 0.9);
  place-items: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 3px 0;
  display: block;
  background: #c2410c;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 12px 4px;
  color: #7c2d12;
  font-weight: 800;
}

.mobile-menu.is-open {
  display: block;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.86), rgba(254, 243, 199, 0.72));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.38;
}

.hero::before {
  width: 360px;
  height: 360px;
  left: 4%;
  top: 8%;
  background: #fb923c;
}

.hero::after {
  width: 460px;
  height: 460px;
  right: 3%;
  bottom: 2%;
  background: #fbbf24;
}

.hero-track {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 36px;
}

.hero-slide {
  display: none;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  min-height: 520px;
}

.hero-slide.is-active,
.hero-slide:first-child {
  display: grid;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.22);
  font-weight: 900;
}

.hero h1,
.hero h2,
.page-hero h1,
.detail-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.08em;
  color: #1f2937;
}

.gradient-text {
  background: linear-gradient(90deg, #ea580c, #d97706, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 670px;
  margin: 20px 0 0;
  color: #5f3a22;
  font-size: 18px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-cats a,
.pill-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 13px;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.22);
  font-weight: 800;
  transition: transform 0.24s ease, background 0.24s ease;
}

.hero-cats a:hover,
.pill-link:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.hero-art {
  position: relative;
}

.hero-frame {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  background: #111827;
  box-shadow: 0 30px 75px rgba(120, 53, 15, 0.28);
}

.hero-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.03);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-card-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  color: #ffffff;
}

.hero-card-copy strong {
  display: block;
  font-size: 26px;
  line-height: 1.18;
}

.hero-card-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  width: min(var(--container), calc(100% - 32px));
  margin: -10px auto 48px;
}

.hero-dots button {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.28);
  transition: width 0.24s ease, background 0.24s ease;
}

.hero-dots button.is-active {
  width: 58px;
  background: linear-gradient(90deg, #f97316, #f59e0b);
}

.section {
  padding: 64px 0;
}

.section.compact {
  padding: 44px 0;
}

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

.section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #ea580c;
  font-weight: 900;
}

.section-head p,
.page-hero p,
.detail-intro,
.category-card p,
.search-copy,
.footer-inner p {
  color: var(--muted);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(154, 72, 15, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 22px 46px rgba(154, 72, 15, 0.16);
}

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

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.72) 100%);
}

.poster-badge,
.detail-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ea580c;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.card-content h3 a:hover {
  color: var(--orange-dark);
}

.card-content p {
  display: -webkit-box;
  min-height: 48px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #7c2d12;
  font-size: 13px;
  font-weight: 800;
}

.card-meta span {
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255, 237, 213, 0.85);
}

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

.tag-row span {
  border-radius: 999px;
  padding: 4px 8px;
  color: #9a3412;
  background: rgba(255, 247, 237, 0.96);
  font-size: 12px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(251, 146, 60, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 237, 0.88));
  box-shadow: 0 14px 34px rgba(154, 72, 15, 0.1);
}

.category-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -52px;
  top: -42px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.16);
}

.category-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 22px;
}

.category-card p,
.category-card span {
  position: relative;
}

.category-card span {
  display: inline-flex;
  margin-top: 16px;
  color: #ea580c;
  font-weight: 900;
}

.rank-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rank-item {
  display: grid;
  grid-template-columns: 52px 74px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(154, 72, 15, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(154, 72, 15, 0.14);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  font-weight: 900;
}

.rank-item img {
  width: 74px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17px;
}

.rank-copy em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.page-hero {
  padding: 58px 0 34px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.78), rgba(254, 243, 199, 0.58));
  border-bottom: 1px solid rgba(251, 146, 60, 0.16);
}

.page-hero .container {
  display: grid;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9a3412;
  font-size: 14px;
  font-weight: 800;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 12px;
  margin: 22px 0 30px;
  padding: 16px;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(154, 72, 15, 0.08);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: #7c2d12;
  font-weight: 900;
  font-size: 13px;
}

.empty-state {
  display: none;
  padding: 28px;
  border-radius: 22px;
  color: #9a3412;
  background: rgba(255, 237, 213, 0.72);
  text-align: center;
  font-weight: 900;
}

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

.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 760px;
}

.search-head input {
  flex: 1;
}

.detail-hero {
  padding: 48px 0;
}

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

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: var(--shadow);
}

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

.detail-badge {
  left: 16px;
  top: 16px;
}

.detail-copy {
  padding-top: 10px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0;
}

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #7c2d12;
  background: rgba(255, 237, 213, 0.9);
  font-weight: 800;
}

.detail-intro {
  max-width: 800px;
  font-size: 18px;
}

.player-section {
  padding: 0 0 54px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111827;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7));
}

.play-round {
  position: absolute;
  z-index: 4;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ea580c;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  font-size: 28px;
  transform: translateX(2px);
}

.content-card {
  padding: 28px;
  border: 1px solid rgba(251, 146, 60, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(154, 72, 15, 0.09);
}

.content-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: #4b5563;
}

.content-card p + p {
  margin-top: 14px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 22px;
}

.related-list {
  display: grid;
  gap: 10px;
}

.related-list a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 17px;
  background: rgba(255, 247, 237, 0.78);
  transition: transform 0.24s ease, background 0.24s ease;
}

.related-list a:hover {
  transform: translateX(3px);
  background: #ffedd5;
}

.related-list img {
  width: 58px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
}

.related-list strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.related-list span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  margin-top: 54px;
  padding: 34px 0;
  border-top: 1px solid rgba(251, 146, 60, 0.18);
  background: rgba(255, 247, 237, 0.76);
}

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  color: #9a3412;
  font-weight: 800;
}

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

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

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

@media (max-width: 860px) {
  .header-inner {
    height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-slide,
  .hero-slide.is-active,
  .hero-slide:first-child {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 26px;
  }

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

  .section-head,
  .footer-inner,
  .search-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rank-panel,
  .detail-layout,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .logo-text small {
    display: none;
  }

  .logo-text strong {
    font-size: 19px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .hero-track {
    padding-top: 36px;
  }

  .hero h1,
  .hero h2,
  .page-hero h1,
  .detail-title {
    font-size: 34px;
  }

  .hero p,
  .detail-intro {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    justify-content: center;
    text-align: center;
  }

  .movie-grid,
  .movie-grid.dense,
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .card-content {
    padding: 13px;
  }

  .card-content h3 {
    font-size: 16px;
  }

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

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

  .rank-item img {
    width: 58px;
    height: 78px;
  }

  .content-card {
    padding: 22px;
  }
}
