:root {
  --blue-900: #0f2d63;
  --blue-800: #17458f;
  --blue-700: #1d63b7;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-100: #ffedd5;
  --red-600: #dc2626;
  --gray-950: #0a0f1f;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.26);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: #f8fafc;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 10px 26px rgba(15, 45, 99, 0.28);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--orange-500);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 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 {
  margin-top: 3px;
  color: #bfdbfe;
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 650;
}

.nav-link {
  position: relative;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fed7aa;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange-500);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1e3f, #1d4ed8 55%, #0c1e3f);
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(249, 115, 22, 0.2), transparent 36%),
    linear-gradient(90deg, rgba(4, 9, 22, 0.92), rgba(4, 9, 22, 0.58) 46%, rgba(4, 9, 22, 0.18));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
}

.hero-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-label::before,
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #e5e7eb;
  font-size: 18px;
}

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

.hero-tags span,
.tag-row span,
.meta-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.14);
  color: #ffedd5;
  backdrop-filter: blur(8px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.34);
}

.btn-primary:hover {
  background: var(--orange-600);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.btn-light {
  background: var(--white);
  color: var(--orange-600);
}

.btn-dark {
  background: rgba(17, 24, 39, 0.92);
  color: var(--white);
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--orange-500);
}

.section {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--blue-700);
  font-weight: 800;
}

.text-link:hover {
  color: var(--orange-600);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-field label {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-field input,
.filter-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--gray-800);
  background: #f9fafb;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-field input:focus,
.filter-field select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

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

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

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

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

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

.movie-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #dbeafe;
}

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

.movie-card a:hover .poster-wrap img {
  transform: scale(1.08);
  filter: brightness(0.78);
}

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 42px;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.48);
}

.movie-card a:hover .poster-play {
  opacity: 1;
  transform: scale(1);
}

.poster-badge,
.poster-year {
  position: absolute;
  top: 10px;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.poster-badge {
  left: 10px;
  background: var(--orange-500);
}

.poster-year {
  right: 10px;
  background: rgba(0, 0, 0, 0.72);
}

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

.movie-card h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card a:hover h3 {
  color: var(--orange-600);
}

.movie-meta,
.movie-desc {
  margin: 0;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-desc {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.category-card span {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.86));
}

.category-card strong,
.category-card em {
  position: absolute;
  left: 18px;
  right: 18px;
}

.category-card strong {
  bottom: 78px;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
}

.category-card em {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-style: normal;
}

.ranking-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 30px;
  padding: 30px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, #f97316, #dc2626);
  box-shadow: var(--shadow-strong);
}

.ranking-copy h2 {
  margin: 10px 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.ranking-copy p {
  margin: 0 0 22px;
  color: #ffedd5;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-item a {
  display: grid;
  grid-template-columns: 54px 58px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-800);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  background: var(--white);
}

.rank-number {
  color: var(--orange-600);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
}

.rank-item img {
  width: 58px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy strong {
  font-weight: 900;
}

.rank-copy em {
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 13px;
  font-style: normal;
}

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

.cta-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 6vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #f97316, #dc2626);
  box-shadow: var(--shadow-strong);
}

.cta-card h2 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.12;
}

.cta-card p {
  max-width: 700px;
  margin: 0;
  color: #ffedd5;
  font-size: 18px;
}

.page-hero {
  padding: 60px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-700), var(--blue-900));
}

.page-hero h1 {
  margin: 10px 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

.overview-stack {
  display: grid;
  gap: 28px;
  padding: 56px 0;
}

.category-overview-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.category-overview-head h2 {
  margin: 8px 0;
  font-size: 32px;
}

.category-overview-head p {
  max-width: 720px;
  margin: 0;
  color: var(--gray-600);
}

.detail-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-950);
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.detail-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.54));
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 62px 0;
}

.detail-hero h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.detail-hero p {
  max-width: 820px;
  margin: 0;
  color: #e5e7eb;
  font-size: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  padding: 36px 0 0;
}

.player-card,
.content-card,
.side-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.movie-video {
  width: 100%;
  height: 100%;
  background: #020617;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.34), rgba(2, 6, 23, 0.82));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-ring {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 5px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 34px;
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.42);
}

.player-overlay strong {
  max-width: min(86%, 720px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(20px, 4vw, 32px);
}

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

.meta-row {
  margin-bottom: 18px;
}

.meta-row span {
  background: var(--gray-100);
  color: var(--gray-700);
}

.tag-row {
  margin-bottom: 26px;
}

.tag-row span {
  background: #eff6ff;
  color: #1d4ed8;
}

.content-card h2 {
  margin: 26px 0 12px;
  color: var(--gray-900);
  font-size: 24px;
}

.content-card h2:first-of-type {
  margin-top: 0;
}

.content-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.9;
}

.content-card blockquote {
  margin: 0;
  border-left: 5px solid var(--orange-500);
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--gray-800);
  background: var(--orange-100);
  line-height: 1.9;
}

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

.poster-card {
  position: sticky;
  top: 92px;
  padding: 18px;
}

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

.poster-card h2 {
  margin: 18px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.poster-card p {
  margin: 0 0 18px;
  color: var(--gray-500);
}

.poster-card .btn {
  width: 100%;
}

.related-section {
  padding-top: 44px;
}

.empty-result {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-500);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  margin-top: 56px;
  color: #d1d5db;
  background: var(--gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 36px;
  padding: 46px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: #cbd5e1;
}

.footer-links {
  columns: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
  break-inside: avoid;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  color: #9ca3af;
  text-align: center;
}

.accent-red .eyebrow,
.accent-orange .eyebrow,
.accent-blue .eyebrow,
.accent-pink .eyebrow,
.accent-slate .eyebrow,
.accent-green .eyebrow,
.accent-purple .eyebrow,
.accent-rose .eyebrow,
.accent-cyan .eyebrow,
.accent-yellow .eyebrow {
  color: #fed7aa;
}

.rank-hero {
  background: linear-gradient(135deg, #f97316, #b91c1c);
}

@media (max-width: 1100px) {
  .grid-six,
  .grid-five {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--blue-900);
    box-shadow: var(--shadow-strong);
  }

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

  .nav-link {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link.is-active::after {
    display: none;
  }

  .hero {
    height: 560px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(4, 9, 22, 0.82), rgba(4, 9, 22, 0.72));
  }

  .hero-content {
    padding-top: 34px;
  }

  .split-heading,
  .category-overview-head,
  .ranking-panel {
    display: block;
  }

  .split-heading .text-link,
  .category-overview-head .btn,
  .ranking-copy .btn {
    margin-top: 16px;
  }

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

  .grid-six,
  .grid-five,
  .grid-four,
  .category-grid,
  .full-rank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-rank {
    margin-top: 24px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .poster-card {
    position: static;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

  .hero {
    height: 620px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p,
  .page-hero p,
  .detail-hero p,
  .cta-card p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 38px 0;
  }

  .grid-six,
  .grid-five,
  .grid-four,
  .category-grid,
  .full-rank {
    gap: 14px;
  }

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

  .movie-card h3 {
    min-height: 44px;
    font-size: 14px;
  }

  .movie-desc {
    display: none;
  }

  .category-card {
    min-height: 170px;
  }

  .category-card strong {
    bottom: 70px;
    font-size: 18px;
  }

  .rank-item a {
    grid-template-columns: 42px 50px 1fr;
    gap: 10px;
  }

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

  .rank-item img {
    width: 50px;
    height: 68px;
  }

  .content-card {
    padding: 20px;
  }

  .footer-links {
    columns: 1;
  }
}
