:root {
  --pink: #ec4899;
  --rose: #f43f5e;
  --orange: #fb923c;
  --yellow: #f59e0b;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff7fb;
  --line: rgba(236, 72, 153, 0.18);
  --shadow: 0 18px 45px rgba(244, 63, 94, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #fff1f7 0%, #fff7ed 50%, #fff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 10%, rgba(236, 72, 153, 0.12), transparent 26%), radial-gradient(circle at 85% 0%, rgba(251, 146, 60, 0.12), transparent 30%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: linear-gradient(90deg, #ec4899, #fb7185 48%, #fb923c);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.22);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.header-search {
  position: relative;
  display: flex;
  width: 250px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.header-search input,
.mobile-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 10px 14px;
  background: transparent;
}

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

.header-search button,
.mobile-search button {
  border: 0;
  padding: 0 14px;
  color: #ec4899;
  font-weight: 800;
  background: #fff;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

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

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

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mobile-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.mobile-category-strip {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.mobile-category-strip a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  margin: 28px auto 46px;
}

.hero-stage {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.12)), linear-gradient(0deg, rgba(236, 72, 153, 0.42), transparent 52%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 74px);
  bottom: clamp(42px, 8vw, 86px);
  max-width: 680px;
  color: #fff;
}

.hero-kicker {
  display: inline-flex;
  padding: 9px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.34);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
}

.hero p {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

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

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

.hero-tags span,
.tag-row span {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #be185d;
  background: #ffe4ef;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

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

.primary-button,
.load-more-button {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 15px 28px rgba(244, 63, 94, 0.34);
}

.ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.load-more-button:hover {
  transform: translateY(-2px) scale(1.01);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

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

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

.hero-thumb-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.hero-thumb {
  position: relative;
  min-height: 86px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  background: #111827;
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.12);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.hero-thumb span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  font-weight: 800;
  text-align: left;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.hero-thumb.is-active {
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.58), 0 16px 35px rgba(244, 63, 94, 0.18);
}

.section-title {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 54px 0 22px;
}

.section-title > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.2);
}

.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  font-weight: 900;
}

.section-title p {
  flex: 1;
  margin: 0 0 3px;
  color: var(--muted);
}

.section-title a {
  margin-left: auto;
  color: var(--pink);
  font-weight: 800;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 15px 36px rgba(236, 72, 153, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(244, 63, 94, 0.18);
}

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

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

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

.card-category,
.rank-number,
.mini-rank {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 8px 18px rgba(236, 72, 153, 0.3);
}

.card-category {
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 12px;
}

.rank-number {
  top: 12px;
  right: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

.movie-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

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

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
}

.horizontal-item {
  position: relative;
  height: 310px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: #111827;
  scroll-snap-align: start;
  box-shadow: 0 18px 42px rgba(236, 72, 153, 0.14);
}

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

.horizontal-item:hover img {
  transform: scale(1.08);
}

.horizontal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.horizontal-item strong,
.horizontal-item small {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 3;
}

.horizontal-item strong {
  bottom: 42px;
  font-size: 19px;
}

.horizontal-item small {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.mini-rank {
  top: 12px;
  left: 12px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.category-tile {
  min-height: 180px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--rose) 55%, var(--orange));
  box-shadow: 0 18px 45px rgba(236, 72, 153, 0.18);
  position: relative;
  overflow: hidden;
}

.category-tile::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  bottom: -60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-tile h2,
.category-tile h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.home-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  padding: 34px;
  margin-top: 54px;
  border-radius: 30px;
  background: linear-gradient(90deg, #ffe4ef, #fff7ed);
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.12);
}

.home-cta h2 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 900;
}

.home-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.page-hero {
  padding: 54px;
  margin: 30px 0 34px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #831843, #ec4899 54%, #fb923c);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr 190px 160px 160px;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(236, 72, 153, 0.09);
}

.filter-bar input,
.filter-bar select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.category-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 34px 0 0;
}

.category-nav-row a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--pink);
  font-weight: 800;
  background: #fff;
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.1);
}

.movie-detail-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: start;
}

.breadcrumb {
  margin: 26px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--pink);
  font-weight: 800;
}

.player-card,
.detail-side,
.detail-content-card,
.search-panel {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(236, 72, 153, 0.12);
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  background: #0f172a;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.12));
}

.play-button {
  position: relative;
  z-index: 3;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  box-shadow: 0 18px 42px rgba(236, 72, 153, 0.38);
  cursor: pointer;
}

.player-info {
  padding: 24px;
}

.player-info h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
}

.player-info p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.detail-side {
  padding: 18px;
}

.detail-side img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px 8px;
  margin: 18px 0 0;
  font-size: 14px;
}

.detail-side dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
  font-weight: 700;
}

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

.detail-content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
}

.detail-content-card p {
  margin: 0 0 20px;
  color: #4b5563;
  line-height: 2;
}

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

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

.ranking-row {
  display: grid;
  grid-template-columns: 62px 90px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.09);
}

.ranking-row b {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.ranking-row img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-row h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

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

.ranking-score {
  color: var(--pink);
  font-size: 22px;
  font-weight: 900;
}

.search-panel {
  padding: 22px;
  margin-bottom: 26px;
}

.search-form-wide {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-form-wide input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  outline: 0;
}

.search-empty {
  padding: 36px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
}

.hidden-by-filter {
  display: none !important;
}

.site-footer {
  margin-top: 72px;
  color: #fff;
  background: linear-gradient(90deg, #db2777, #f43f5e 48%, #fb923c);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 46px 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.site-footer a:hover {
  color: #fff;
}

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

.site-footer li + li {
  margin-top: 8px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

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

  .hero-thumb-row,
  .movie-grid,
  .category-showcase,
  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-detail-layout,
  .home-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header-inner,
  main,
  .footer-grid,
  .footer-bottom,
  .mobile-panel {
    width: min(100% - 22px, 1180px);
  }

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

  .hero-stage {
    min-height: 560px;
    border-radius: 22px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 54px;
  }

  .hero p {
    font-size: 15px;
  }

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

  .movie-grid,
  .category-showcase,
  .related-grid,
  .footer-grid,
  .filter-bar,
  .search-form-wide {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .ranking-row {
    grid-template-columns: 44px 72px 1fr;
  }

  .ranking-row img {
    width: 72px;
    height: 96px;
  }

  .ranking-score {
    grid-column: 2 / -1;
  }
}
