/* Title Badge — 稀有度上色（全站共用）*/
.title-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}

.title-rarity-common {
  color: #8e8e93;
  background: rgba(142, 142, 147, 0.12);
}

.title-rarity-rare {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
}

.title-rarity-epic {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.14);
}

.title-rarity-legendary {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  text-shadow: 0 0 6px rgba(245, 158, 11, 0.35);
  font-weight: 700;
}
