/**
 * ranking.css
 * 総合レーティングランキング (RANKING) ページのカスタムスタイル
 */

.ranking-page {
  max-width: 1152px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  flex: 1;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.ranking-table th {
  font-family: 'Silkscreen', cursive;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--nav-link-color);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border-color);
  font-weight: normal;
  white-space: nowrap;
}

.ranking-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  color: var(--text-color);
  white-space: nowrap;
}

.ranking-table tr:hover td {
  background-color: rgba(128, 128, 128, 0.05);
}

.ranking-rank {
  font-family: 'Silkscreen', cursive;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  width: 60px;
}

.ranking-rank.gold { color: #f59e0b; }
.ranking-rank.silver { color: #94a3b8; }
.ranking-rank.bronze { color: #b45309; }

.ranking-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.ranking-val {
  font-family: 'Silkscreen', cursive;
  font-weight: 900;
  font-size: 0.9rem;
}

.ranking-highest {
  color: var(--nav-link-color);
  font-size: 0.75rem;
}

.ranking-contests {
  font-family: 'Silkscreen', cursive;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--text-color);
}
