:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #1e293b;
  --panel-line: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --blue: #2563eb;
  --amber: #facc15;
  --radius: 1rem;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(8, 145, 178, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong,
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  color: var(--muted-strong);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link.sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(51, 65, 85, 0.75);
}

.top-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.top-search input,
.filter-controls input,
.filter-controls select {
  color: #fff;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(71, 85, 105, 0.9);
  border-radius: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input {
  width: 13rem;
  padding: 0.68rem 0.85rem;
}

.top-search button,
.btn-primary,
.btn-ghost,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.85rem;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.top-search button,
.btn-primary {
  padding: 0.72rem 1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 30px rgba(6, 182, 212, 0.2);
}

.btn-primary.full {
  width: 100%;
  margin-top: 1rem;
}

.btn-ghost {
  padding: 0.72rem 1rem;
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.top-search button:hover,
.btn-primary:hover,
.btn-ghost:hover,
.text-link:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.1);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  border: 0;
  border-radius: 0.75rem;
  background: rgba(51, 65, 85, 0.8);
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: max(500px, 70vh);
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.95), transparent 45%);
}

.hero-content {
  position: relative;
  height: min(70vh, 720px);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 44rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding: 0.46rem 0.85rem;
  color: #67e8f9;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.18);
  border: 1px solid rgba(103, 232, 249, 0.18);
  backdrop-filter: blur(10px);
}

.hero h1,
.hero h2,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.hero h1,
.hero h2 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
}

.hero p,
.page-hero p {
  max-width: 46rem;
  margin: 1.2rem 0 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-meta {
  margin-top: 1.3rem;
}

.hero-meta span,
.detail-meta span {
  padding: 0.45rem 0.72rem;
  color: var(--muted-strong);
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(10px);
}

.hero-meta span:first-child,
.detail-meta span:first-child {
  color: #111827;
  background: linear-gradient(135deg, #fde047, #f97316);
  border: 0;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 5;
}

.hero-dot {
  width: 0.65rem;
  height: 0.65rem;
  border: 0;
  border-radius: 999px;
  background: #64748b;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 2.3rem;
  background: var(--cyan);
}

.section-block,
.page-main {
  padding-block: 4rem;
}

.page-main {
  min-height: 70vh;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.filter-panel h2,
.side-panel h2,
.detail-card h2 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.section-heading h2::before,
.detail-card h2::before,
.side-panel h2::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 1.55rem;
  margin-right: 0.8rem;
  vertical-align: -0.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.section-heading a,
.text-link {
  color: #67e8f9;
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 1.35rem;
}

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

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid rgba(51, 65, 85, 0.84);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-3px) scale(1.018);
  border-color: rgba(6, 182, 212, 0.9);
  box-shadow: 0 24px 60px rgba(6, 182, 212, 0.12);
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .card-media img,
.category-tile:hover img,
.rank-item:hover img {
  transform: scale(1.08);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 58%);
}

.score-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 900;
}

.score-badge {
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.28rem 0.55rem;
  color: #111827;
  background: var(--amber);
  font-size: 0.82rem;
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(6, 182, 212, 0.92);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-body {
  padding: 1rem;
}

.card-body h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #67e8f9;
}

.card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3.1rem;
  margin: 0.65rem 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.card-meta {
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.card-meta span {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.tag-row span {
  padding: 0.28rem 0.55rem;
  color: #bae6fd;
  background: rgba(8, 145, 178, 0.16);
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
}

.highlight-panel {
  padding: 2rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.86));
  border: 1px solid rgba(51, 65, 85, 0.8);
  box-shadow: var(--shadow);
}

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

.category-tile {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(51, 65, 85, 0.75);
  background: var(--panel-soft);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.18));
}

.category-tile span,
.category-tile small {
  position: relative;
  z-index: 2;
  display: block;
  padding-inline: 1rem;
}

.category-tile span {
  margin-top: 7.8rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.category-tile small {
  margin-top: 0.4rem;
  color: var(--muted-strong);
  line-height: 1.5;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
}

.rank-list {
  display: grid;
  gap: 0.85rem;
}

.rank-item {
  display: grid;
  grid-template-columns: auto 5.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem;
  border: 1px solid rgba(51, 65, 85, 0.78);
  border-radius: 1rem;
  background: rgba(30, 41, 59, 0.8);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  background: rgba(51, 65, 85, 0.78);
  border-color: rgba(6, 182, 212, 0.55);
}

.rank-number {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.rank-item img {
  width: 5.5rem;
  height: 3.6rem;
  object-fit: cover;
  border-radius: 0.7rem;
  transition: transform 0.35s ease;
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info small {
  color: var(--muted);
}

.page-hero {
  padding: 3rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.24), transparent 45%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
  border: 1px solid rgba(51, 65, 85, 0.82);
  box-shadow: var(--shadow);
}

.small-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: #67e8f9;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 1.25rem;
  background: rgba(30, 41, 59, 0.82);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
}

.category-cover-stack img {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.65rem;
}

.category-overview-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.category-overview-card p {
  color: var(--muted-strong);
  line-height: 1.7;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(51, 65, 85, 0.78);
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.82);
}

.filter-panel p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.filter-controls input,
.filter-controls select {
  min-height: 2.8rem;
  padding: 0 0.9rem;
}

.filter-controls input {
  width: min(22rem, 100%);
}

.empty-state {
  padding: 2rem;
  text-align: center;
  color: var(--muted-strong);
  border: 1px solid rgba(51, 65, 85, 0.78);
  border-radius: 1.2rem;
  background: rgba(30, 41, 59, 0.76);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 0.82fr);
  gap: 2rem;
  align-items: start;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #000;
  box-shadow: var(--shadow);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  color: #fff;
  border: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.18));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 5.2rem;
  height: 5.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.35);
  font-size: 1.85rem;
}

.play-error {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: none;
  padding: 0.6rem 0.9rem;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.84);
  border-radius: 999px;
}

.video-shell.has-error .play-error {
  display: block;
}

.detail-card,
.poster-card,
.side-panel {
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.25);
}

.detail-card {
  margin-top: 1.5rem;
  padding: 1.6rem;
}

.detail-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-card section {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(51, 65, 85, 0.74);
}

.detail-card h2,
.side-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.detail-card p {
  color: var(--muted-strong);
  line-height: 1.9;
  font-size: 1.02rem;
}

.detail-tags {
  margin-top: 1.5rem;
}

.detail-aside {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.poster-card {
  padding: 1rem;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1rem;
}

.side-panel {
  padding: 1.2rem;
}

.side-panel dl {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.7rem 1rem;
  margin: 0;
}

.side-panel dt {
  color: var(--muted);
}

.side-panel dd {
  margin: 0;
  color: var(--muted-strong);
}

.site-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(51, 65, 85, 0.78);
  background: rgba(2, 6, 23, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid p,
.footer-links a {
  color: var(--muted);
}

.footer-grid p {
  max-width: 28rem;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding: 1.2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(51, 65, 85, 0.58);
}

[hidden] {
  display: none !important;
}

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

  .nav-link.sub {
    display: none;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 5.3rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(51, 65, 85, 0.92);
    border-radius: 1.15rem;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-link.sub {
    display: block;
  }

  .brand-text small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 540px;
  }

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

  .two-column,
  .category-overview-grid,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }

  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-controls {
    justify-content: stretch;
  }

  .filter-controls input,
  .filter-controls select {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .header-inner {
    min-height: 4.25rem;
  }

  .brand-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

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

  .hero h1,
  .hero h2 {
    max-width: 100%;
  }

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

  .featured-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .card-body {
    padding: 0.82rem;
  }

  .card-body p {
    min-height: auto;
    font-size: 0.86rem;
  }

  .highlight-panel,
  .page-hero,
  .detail-card {
    padding: 1.1rem;
  }

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

  .rank-item {
    grid-template-columns: auto 4.3rem minmax(0, 1fr);
  }

  .rank-item img {
    width: 4.3rem;
    height: 3rem;
  }
}
