:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #1e293b;
  --panel-2: #334155;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
  background: #0f172a;
}

button,
input,
select {
  font: inherit;
}

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--accent), #f97316);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.32);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--subtle);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.desktop-nav a,
.mobile-panel a {
  color: var(--muted);
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--accent);
}

.header-search,
.mobile-search,
.intro-search,
.search-page-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(51, 65, 85, 0.68);
  border-radius: 12px;
}

.header-search input,
.mobile-search input,
.intro-search input,
.search-page-form input {
  width: 220px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  padding: 11px 14px;
}

.header-search button,
.mobile-search button,
.intro-search button,
.search-page-form button {
  border: 0;
  color: white;
  cursor: pointer;
  background: var(--accent);
  padding: 11px 16px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.intro-search button:hover,
.search-page-form button:hover {
  background: var(--accent-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.8);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 999px;
}

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

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

.home-hero {
  position: relative;
  height: min(720px, 72vh);
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}


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

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

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

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 35%, rgba(245, 158, 11, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.58) 42%, rgba(2, 6, 23, 0.16)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.2) 42%, transparent 100%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 84px;
  width: min(680px, calc(100% - 48px));
}

.hero-kicker,
.section-eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-content h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-text {
  margin: 0 0 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 21px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 700;
}

.hero-actions,
.search-sort-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-btn,
.ghost-btn,
.section-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: white;
  background: var(--accent);
}

.primary-btn:hover,
.section-heading a:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.ghost-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
}

.ghost-btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  color: white;
  cursor: pointer;
  background: rgba(2, 6, 23, 0.56);
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.85);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 20px;
  transform: translateY(-50%);
}

.hero-next {
  right: 20px;
  transform: translateY(-50%);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--accent);
}

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

.section-wrap {
  padding: 58px 0 0;
}

.intro-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 44px;
}

.intro-copy h1,
.intro-copy h2,
.section-heading h2,
.page-hero h1,
.detail-card h1,
.detail-card h2,
.side-panel h2,
.category-overview-block h2 {
  margin: 0;
  line-height: 1.2;
}

.intro-copy h1,
.intro-copy h2,
.section-heading h2,
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.intro-copy p:last-child,
.page-hero p,
.category-overview-block p {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 760px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-heading a {
  color: white;
  background: rgba(51, 65, 85, 0.86);
}

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

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid transparent;
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card-link:hover {
  border-color: rgba(245, 158, 11, 0.85);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.movie-card-thumb {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.poster-thumb {
  aspect-ratio: 2 / 3;
}

.wide-thumb {
  width: 168px;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.landscape-thumb {
  aspect-ratio: 16 / 9;
}

.movie-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.hover-shade,
.movie-card-shade,
.landscape-shade,
.category-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hover-shade {
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 58%);
  transition: opacity 0.25s ease;
}

.movie-card-link:hover .hover-shade {
  opacity: 1;
}

.movie-card-shade {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.6));
}

.landscape-shade,
.category-shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.1));
}

.year-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: white;
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

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

.movie-card h2,
.movie-card h3,
.compact-body h3,
.large-card-copy h3 {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card-link:hover h2,
.movie-card-link:hover h3,
.related-item:hover strong,
.rank-card:hover strong {
  color: var(--accent);
}

.movie-card-body p,
.compact-body p,
.large-card-copy p {
  margin: 8px 0 0;
  color: var(--subtle);
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-body p {
  -webkit-line-clamp: 1;
}

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

.tag-row span {
  color: var(--accent);
  background: rgba(51, 65, 85, 0.9);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.movie-card-body .tag-row {
  margin: 10px 0 0;
}

.movie-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--subtle);
  font-size: 12px;
}

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

.movie-card-horizontal .movie-card-link {
  display: flex;
  align-items: stretch;
}

.movie-card-horizontal .movie-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.large-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.large-card-copy h3 {
  font-size: 26px;
  -webkit-line-clamp: 2;
  margin-top: 10px;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.22);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.category-copy strong {
  display: block;
  font-size: 25px;
  line-height: 1.2;
}

.category-copy small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.32), transparent 28%),
    linear-gradient(135deg, #0f172a, #020617);
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.small-hero > div {
  padding: 60px 0;
}

.filter-panel,
.search-panel {
  padding-top: 36px;
}

.filter-grid,
.search-sort-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.filter-grid input,
.filter-grid select,
.search-sort-row select {
  width: 100%;
  border: 1px solid var(--line);
  color: white;
  outline: none;
  background: #0f172a;
  border-radius: 12px;
  padding: 12px 14px;
}

.empty-state {
  margin-top: 22px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  background: rgba(30, 41, 59, 0.78);
  border-radius: 18px;
}

.category-overview-block {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

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

.rank-card a {
  display: grid;
  grid-template-columns: 64px 92px 1fr;
  align-items: center;
  gap: 18px;
  padding: 12px;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid transparent;
  border-radius: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-card a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.rank-number {
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.rank-card img {
  width: 92px;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.rank-copy strong,
.rank-copy small,
.rank-copy em {
  display: block;
}

.rank-copy strong {
  font-size: 20px;
  line-height: 1.3;
}

.rank-copy small {
  color: var(--subtle);
  margin: 6px 0;
  font-style: normal;
}

.rank-copy em {
  color: var(--muted);
  font-style: normal;
}

.search-page-form {
  width: min(760px, 100%);
}

.search-page-form input {
  flex: 1;
  width: auto;
}

.search-sort-row {
  display: flex;
  width: min(760px, 100%);
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: 0;
}

.detail-wrap {
  padding: 28px 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--subtle);
  font-size: 14px;
  margin-bottom: 24px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.86fr);
  gap: 28px;
}

.detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.player video,
.video-cover,
.video-cover img {
  width: 100%;
  height: 100%;
}

.player video {
  display: block;
  background: #000;
}

.video-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: white;
  background: #000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-cover img {
  object-fit: cover;
  filter: brightness(0.55);
}

.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: rgba(245, 158, 11, 0.92);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 55px rgba(245, 158, 11, 0.35);
}

.play-ring span {
  margin-left: 5px;
  font-size: 34px;
  line-height: 1;
}

.player.is-playing .video-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player.is-loading .play-ring {
  animation: pulse 1s linear infinite;
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  color: white;
  text-align: center;
  pointer-events: none;
}

.detail-card,
.side-panel {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.detail-card h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.detail-meta {
  margin: 16px 0;
  color: var(--muted);
}

.detail-meta span {
  padding: 7px 12px;
  background: rgba(51, 65, 85, 0.8);
  border-radius: 999px;
}

.detail-tags {
  margin-bottom: 18px;
}

.one-line {
  color: var(--accent);
  font-weight: 800;
}

.detail-card p {
  color: var(--muted);
  font-size: 16px;
}

.detail-card h2 {
  margin-top: 24px;
  font-size: 24px;
}

.detail-side {
  min-width: 0;
}

.side-panel {
  position: sticky;
  top: 96px;
}

.side-panel h2 {
  font-size: 23px;
  margin-bottom: 18px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  min-width: 0;
}

.related-item img {
  width: 86px;
  height: 124px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.related-item span {
  min-width: 0;
}

.related-item strong,
.related-item small,
.related-item em {
  display: block;
}

.related-item strong {
  color: white;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.related-item small {
  color: var(--subtle);
  margin: 5px 0;
}

.related-item em {
  color: var(--subtle);
  font-size: 12px;
  font-style: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.more-section {
  width: 100%;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.96);
}

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

.footer-grid p,
.footer-bottom {
  color: var(--subtle);
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--subtle);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 12px;
  }

  .header-search input {
    width: 170px;
  }

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

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

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

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

  .home-hero {
    height: 68vh;
    min-height: 560px;
  }

  .hero-content {
    bottom: 72px;
  }

  .intro-strip,
  .section-heading,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-search,
  .intro-search input,
  .search-page-form {
    width: 100%;
  }

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

  .large-grid,
  .horizontal-list,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .mobile-panel,
  .section-wrap,
  .detail-wrap,
  .footer-grid,
  .footer-bottom,
  .page-hero > div {
    width: min(100% - 24px, 1280px);
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .home-hero {
    min-height: 540px;
  }

  .hero-content {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .hero-arrow {
    display: none;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .category-grid,
  .filter-grid,
  .search-sort-row {
    grid-template-columns: 1fr;
  }

  .movie-card-body,
  .compact-body,
  .detail-card,
  .side-panel {
    padding: 14px;
  }

  .movie-card-horizontal .movie-card-link {
    display: grid;
    grid-template-columns: 122px 1fr;
  }

  .wide-thumb {
    width: 122px;
    height: 100%;
  }

  .rank-card a {
    grid-template-columns: 42px 72px 1fr;
    gap: 12px;
  }

  .rank-card img {
    width: 72px;
    height: 104px;
  }

  .rank-number {
    font-size: 22px;
  }

  .footer-grid {
    padding: 32px 0;
  }
}
