.rankings-list {
  list-style: none;
  margin: 0;
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ranking-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.15);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ranking-card:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(15, 23, 42, 0.75);
}

.ranking-pos {
  flex: 0 0 2.6rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.05rem;
  color: #bfdbfe;
  text-align: right;
}

.ranking-score {
  font-size: 0.92rem;
  color: var(--dash-muted, #94a3b8);
}

.rankings-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 8px 0 48px;
  color: var(--dash-muted, #94a3b8);
}

.rankings-pager a {
  color: #22d3ee;
  text-decoration: none;
}

.rankings-pager a:hover {
  text-decoration: underline;
}
