:root {
  --color-primary: #f97316;
  --color-accent: #ef4444;
  --color-gold: #f59e0b;
  --color-dark: #111827;
  --color-darker: #070b12;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-soft: #fff7ed;
  --shadow-card: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 28px 70px rgba(249, 115, 22, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.96), rgba(239, 68, 68, 0.96));
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(185, 28, 28, 0.24);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 12px 28px rgba(127, 29, 29, 0.22);
}

.brand-text {
  font-size: 1.22rem;
}

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

.nav-link,
.mobile-link {
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  width: 280px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.mobile-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  padding: 11px 14px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button,
.mobile-search button {
  border: 0;
  cursor: pointer;
  padding: 11px 16px;
  color: var(--color-primary);
  background: #ffffff;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.mobile-panel {
  display: none;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-link {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-search {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

main {
  min-height: 60vh;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 16%, rgba(249, 115, 22, 0.42), transparent 30%), linear-gradient(135deg, #111827, #450a0a 58%, #7f1d1d);
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -40% 42%;
  height: 420px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.38), transparent 62%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 650px;
  padding: 70px 0 54px;
  display: grid;
  align-items: center;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 52px;
  align-items: center;
  animation: fadeIn 0.55s ease both;
}

.hero-slide.active {
  display: grid;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fed7aa;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 920px;
}

.hero h1 span {
  display: block;
  color: #fdba74;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.9;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-meta span,
.tag-row span,
.detail-tags span,
.category-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 7px 11px;
}

.hero-meta span {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.btn-primary,
.btn-ghost,
.card-actions a,
.play-overlay {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  min-height: 50px;
  padding: 0 22px;
  color: #9a3412;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  min-height: 50px;
  padding: 0 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-ghost:hover,
.card-actions a:hover {
  transform: translateY(-2px);
}

.hero-search {
  display: flex;
  width: min(620px, 100%);
  margin-top: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  padding: 17px 20px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-search button {
  border: 0;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-weight: 900;
  cursor: pointer;
}

.hero-visual {
  position: relative;
}

.hero-poster {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.66));
}

.hero-card-float {
  position: absolute;
  left: -24px;
  bottom: 28px;
  width: min(310px, 88%);
  padding: 18px;
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-card-float strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-card-float p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

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

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

.hero-dot.active {
  width: 36px;
  background: #ffffff;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

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

.section-head h1,
.section-head h2,
.page-title h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
}

.section-head p,
.page-title p {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--color-muted);
  line-height: 1.8;
}

.section-link {
  color: var(--color-primary);
  font-weight: 900;
}

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

.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

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

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

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

.quality-badge,
.rank-badge,
.score-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.quality-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-size: 0.78rem;
}

.rank-badge {
  left: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  background: rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(10px);
}

.movie-card-body {
  padding: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.movie-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #111827;
}

.movie-card h2 a:hover {
  color: var(--color-primary);
}

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

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

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.card-actions a {
  min-height: 36px;
  padding: 0 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  font-size: 0.88rem;
}

.card-actions span {
  color: #b45309;
  font-weight: 900;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: var(--shadow-card);
}

.category-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, #fb923c, #dc2626);
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.category-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.category-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 18px;
  font-weight: 900;
}

.page-title {
  padding: 56px 0 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-muted);
  font-weight: 700;
}

.breadcrumb a {
  color: var(--color-primary);
}

.filter-panel {
  margin: 0 auto 30px;
  padding: 18px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.filter-title span {
  color: var(--color-primary);
  font-weight: 900;
}

.filter-title strong {
  font-size: 1.15rem;
}

.filter-fields {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(130px, 1fr));
  gap: 12px;
}

.filter-fields input,
.filter-fields select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  outline: 0;
  background: #f9fafb;
  color: #111827;
  padding: 0 13px;
}

.filter-fields input:focus,
.filter-fields select:focus {
  border-color: #fdba74;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.filter-empty {
  display: none;
  padding: 40px 20px;
  border-radius: 24px;
  text-align: center;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 900;
}

.detail-hero {
  padding: 54px 0 28px;
  background: radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.24), transparent 28%), linear-gradient(135deg, #111827, #450a0a);
  color: #ffffff;
}

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

.detail-cover {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #fed7aa, #fecaca);
}

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

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.detail-info .lead {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.9;
}

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

.detail-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
  font-weight: 800;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.detail-main {
  padding: 42px 0 74px;
}

.player-section {
  margin-bottom: 42px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #030712;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.32);
  aspect-ratio: 16 / 9;
}

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #030712;
  object-fit: contain;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  flex-direction: column;
  gap: 14px;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.26), rgba(3, 7, 18, 0.78));
  border-radius: 0;
  font-size: 1.05rem;
}

.play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.34);
  font-size: 2.4rem;
  line-height: 1;
  padding-left: 6px;
}

.content-panel {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.content-panel + .content-panel {
  margin-top: 24px;
}

.content-panel h2 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  color: #111827;
}

.content-panel p {
  margin: 0;
  color: #374151;
  line-height: 1.95;
  font-size: 1.02rem;
}

.content-panel p + p {
  margin-top: 16px;
}

.related-strip {
  margin-top: 36px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 56px 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.rank-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #ffffff;
  font-weight: 900;
}

.rank-row img {
  width: 86px;
  height: 118px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff7ed;
}

.rank-row h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.rank-row p {
  margin: 0 0 10px;
  color: var(--color-muted);
  line-height: 1.6;
}

.rank-row span {
  color: #b45309;
  font-weight: 900;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 58px 0 28px;
}

.footer-inner {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 42px;
}

.footer-logo {
  color: #ffffff;
}

.footer-brand p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #9ca3af;
  line-height: 1.8;
}

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

.footer-links h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.08rem;
}

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

.footer-link-list a {
  color: #9ca3af;
}

.footer-link-list a:hover {
  color: #fb923c;
}

.footer-bottom {
  width: min(1440px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #6b7280;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1280px) {
  .movie-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

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

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

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

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

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

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

  .filter-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-list {
    grid-template-columns: 1fr;
  }
}

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

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

  .mobile-panel.open {
    display: block;
  }

  .hero-shell {
    min-height: auto;
    padding: 44px 0 74px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

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

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

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .header-inner,
  .mobile-panel,
  .hero-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1440px);
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero-slide {
    gap: 28px;
  }

  .hero-actions,
  .hero-search {
    width: 100%;
  }

  .hero-search button {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

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

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

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

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

  .category-grid,
  .filter-fields {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    max-width: 260px;
  }

  .content-panel {
    padding: 22px;
  }

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

  .rank-row img {
    width: 70px;
    height: 98px;
  }
}
