:root {
  --bg: #fffaf0;
  --paper: #ffffff;
  --ink: #15110b;
  --muted: #6b6257;
  --line: rgba(146, 64, 14, 0.16);
  --amber: #d97706;
  --amber-deep: #92400e;
  --orange: #f97316;
  --red: #dc2626;
  --dark: #111827;
  --shadow: 0 24px 70px rgba(146, 64, 14, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fffbeb 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
  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, 251, 235, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.14);
}

.nav-wrap {
  width: min(1200px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #78350f;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--red));
  box-shadow: 0 16px 34px rgba(217, 119, 6, 0.28);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4b3b2b;
  font-weight: 700;
  font-size: 15px;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.site-nav a:hover {
  color: var(--amber-deep);
  border-color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--amber-deep);
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 14% 20%, rgba(255, 237, 213, 0.55), transparent 26%), linear-gradient(135deg, #b45309 0%, #f97316 48%, #dc2626 100%);
}

.hero-glow {
  position: absolute;
  inset: auto -12% -38% auto;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(2px);
  z-index: -1;
}

.hero-slides {
  width: min(1200px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: center;
  gap: 48px;
  padding: 70px 0 110px;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
}

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

.hero-kicker,
.detail-kicker,
.page-hero span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff7ed;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 20px 0 16px;
  color: #fff;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 50px rgba(55, 25, 10, .24);
}

.hero-line {
  max-width: 740px;
  color: #fff7ed;
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.45;
  margin: 0 0 18px;
  font-weight: 750;
}

.hero-summary {
  max-width: 720px;
  color: rgba(255, 247, 237, 0.86);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 26px;
}

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

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

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  box-shadow: 0 18px 40px rgba(220, 38, 38, 0.25);
  border: 0;
  cursor: pointer;
}

.ghost-btn {
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(146, 64, 14, 0.26);
}

.hero-poster {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 470px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 34px 90px rgba(69, 26, 3, .42);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, .56));
  z-index: 1;
}

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

.hero-poster span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  font-weight: 900;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dot.active {
  width: 34px;
  background: #fff;
}

.hero-stats {
  position: absolute;
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  z-index: 6;
}

.hero-stats a {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-stats strong {
  color: #92400e;
  font-size: 28px;
  font-weight: 950;
}

.hero-stats span {
  color: var(--muted);
  font-weight: 700;
}

.section-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 0;
}

.home-page .section-wrap:first-of-type {
  padding-top: 128px;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading span {
  margin: 0 auto 12px;
  color: var(--amber-deep);
  background: #ffedd5;
}

.section-heading h2 {
  margin: 0;
  color: #1f160e;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 44px rgba(146, 64, 14, 0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 28px 70px rgba(146, 64, 14, 0.16);
}

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

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

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

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #fff;
  background: rgba(120, 53, 15, 0.84);
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

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

.movie-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #a16207;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
}

.movie-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.movie-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.68;
  font-size: 14px;
}

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

.movie-card.compact h2 {
  font-size: 16px;
}

.movie-card.compact p {
  font-size: 13px;
}

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

.tag-row span {
  display: inline-flex;
  align-items: center;
  color: #7c2d12;
  background: #ffedd5;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span,
.detail-tags span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.amber-panel {
  width: min(1260px, calc(100% - 32px));
  padding: 72px 30px;
  margin-top: 88px;
  border-radius: 36px;
  background: linear-gradient(180deg, #fffbeb, #fff7ed);
  border: 1px solid rgba(217, 119, 6, .16);
  box-shadow: var(--shadow);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 52px 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ranking-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(146, 64, 14, 0.14);
}

.rank-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber), var(--red));
  font-weight: 950;
}

.ranking-item img {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  object-fit: cover;
  background: #ffedd5;
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.rank-info strong {
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-info em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.center-actions {
  justify-content: center;
  margin-top: 28px;
}

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

.category-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 26px;
  background: #1f160e;
  box-shadow: var(--shadow);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.76));
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile span,
.category-tile strong {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
}

.category-tile span {
  bottom: 72px;
  font-size: 22px;
  font-weight: 950;
}

.category-tile strong {
  bottom: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
}

.page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 70px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #b45309, #f97316 58%, #dc2626);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .24), transparent 25%), radial-gradient(circle at 88% 78%, rgba(255, 255, 255, .18), transparent 30%);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 247, 237, .88);
  font-size: 17px;
  line-height: 1.8;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 20px 54px rgba(146, 64, 14, 0.1);
}

.category-overview-head span {
  color: var(--amber-deep);
  font-weight: 950;
}

.category-overview-head h2 {
  margin: 12px 0 20px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 950;
}

.category-overview-head a {
  display: inline-flex;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--red));
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 900;
}

.mini-poster-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.mini-poster-row a {
  display: grid;
  gap: 8px;
}

.mini-poster-row img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  background: #ffedd5;
}

.mini-poster-row strong {
  font-size: 13px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filter-panel,
.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 170px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(146, 64, 14, 0.08);
}

.search-form {
  grid-template-columns: minmax(0, 1fr) 180px auto;
}

.filter-panel input,
.filter-panel select,
.search-form input,
.search-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 999px;
  background: #fffaf0;
  padding: 0 16px;
  outline: none;
  color: #3f2d1f;
}

.filter-panel input:focus,
.filter-panel select:focus,
.search-form input:focus,
.search-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #451a03;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
}

.detail-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 247, 237, .82);
  font-weight: 750;
  margin-bottom: 48px;
}

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

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

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

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

.detail-copy h1 {
  margin: 20px 0 14px;
  color: #fff;
  font-size: clamp(36px, 5.8vw, 72px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.detail-line {
  color: #fff7ed;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 750;
  margin: 0 0 22px;
}

.detail-actions {
  margin-top: 28px;
}

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

.player-card,
.story-card {
  background: #fff;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111827;
  cursor: pointer;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #111827;
  object-fit: contain;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(17, 24, 39, .08), rgba(17, 24, 39, .62));
  cursor: pointer;
  z-index: 2;
}

.play-layer span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--red));
  box-shadow: 0 24px 60px rgba(220, 38, 38, .35);
  font-size: 34px;
  text-indent: 4px;
}

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

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

.player-title {
  padding: 22px 24px;
}

.player-title h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 950;
}

.player-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-card {
  padding: 28px;
}

.story-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 950;
}

.story-card p {
  margin: 0;
  color: #3f352c;
  line-height: 2;
  font-size: 16px;
}

.search-shell {
  min-height: 520px;
}

.search-results:empty::before {
  content: "输入关键词开始搜索";
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 28px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
}

.site-footer {
  margin-top: 100px;
  color: rgba(255, 247, 237, .82);
  background: linear-gradient(180deg, #1f160e, #111827);
}

.footer-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 56px 0;
}

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

.footer-grid p {
  color: rgba(255, 247, 237, .76);
  line-height: 1.8;
  margin: 12px 0 0;
}

.footer-grid a:not(.footer-brand) {
  display: block;
  color: rgba(255, 247, 237, .76);
  margin: 10px 0;
}

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

.footer-brand {
  color: #fbbf24;
  font-size: 22px;
}

.copyright {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 247, 237, .58);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 12px;
    font-size: 14px;
  }

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

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

  .hero-slide {
    grid-template-columns: 1fr .65fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 10px;
  }

  .hero-section,
  .hero-slides {
    min-height: 860px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 150px;
  }

  .hero-poster {
    min-height: 360px;
    transform: none;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    bottom: -150px;
  }

  .home-page .section-wrap:first-of-type {
    padding-top: 220px;
  }

  .three-col,
  .four-col,
  .six-col,
  .category-grid,
  .ranking-grid,
  .ranking-page-list,
  .footer-grid,
  .category-overview-card,
  .detail-layout,
  .filter-panel,
  .search-form {
    grid-template-columns: 1fr;
  }

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

  .detail-content {
    padding-top: 24px;
  }

  .detail-layout {
    align-items: start;
  }

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

@media (max-width: 520px) {
  .nav-wrap,
  .section-wrap,
  .hero-slides,
  .detail-content,
  .footer-grid,
  .copyright {
    width: min(100% - 24px, 1200px);
  }

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

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

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

  .mini-poster-row,
  .six-col,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-item {
    grid-template-columns: 44px 62px minmax(0, 1fr);
  }

  .ranking-item img {
    width: 62px;
    height: 84px;
  }
}
