/* === HEALTH BARS === */
.sa-health-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.sa-health-item span {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.sa-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  overflow: hidden;
}

.sa-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #6366f1, #22d3ee);
  border-radius: 100px;
  transition: width 0.6s ease;
}
