/* ── PROGRESS BAR (chunky “life bar”) ── */
.progress-wrap {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.6rem;
  background: var(--bg-surface);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--hud-gloss), 0 6px 0 rgba(0, 0, 0, 0.28);
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.progress-label span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.progress-label strong {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--nintendo-red);
  letter-spacing: 0.02em;
}
.progress-track {
  height: 10px;
  background: var(--bg-elevated);
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35);
}
.progress-fill {
  height: 100%;
  background: var(--nintendo-primary);
  border-radius: var(--radius-pill);
  width: 0%;
  transition: width 0.85s cubic-bezier(0.33, 1, 0.68, 1);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

