/* Enemy overhead HUD: poise, armor, status badges */
/* 敵人身上的 HUD：霸體、裝甲、狀態 */
.ehud { position: absolute; left: 50%; bottom: 100%; margin-bottom: 8px; transform: translateX(-50%); width: 340px; display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; }
.ehud .poise-row { display: none; flex-direction: row; align-items: center; gap: 8px; width: 240px; padding: 5px 10px; background: rgba(10,13,22,.75); border: 1px solid rgba(167,139,250,.5); border-radius: 4px; box-shadow: 0 0 18px rgba(167,139,250,.25); }
.stage.show-poise .ehud .poise-row { display: flex; }
.stage.near .eprompt { left: 1150px; }
.ehud .poise-row .lbl { font-size: 12px; letter-spacing: .16em; color: var(--violet); white-space: nowrap; }
.ehud .poise-row .bar { flex: 1; height: 10px; }
.ehud .poise-row .bar.poise i { margin-left: 0; }
.ehud .poise-row b { font-family: var(--hud); font-size: 15px; color: var(--violet); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ehud .poise-row b.low { color: var(--brass); }
.ehud .badges { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.ehud .armor { display: none; align-items: center; gap: 4px; padding: 2px 9px 2px 5px; border-radius: 999px; background: rgba(10,13,22,.8); border: 1px solid rgba(199,206,224,.6); }
.ehud .armor.on { display: inline-flex; }
.ehud .armor b { font-family: var(--hud); font-weight: 700; font-size: 16px; color: #E3E8F5; }
.ehud .chips { justify-content: center; min-height: 0; }
.ehud .chip { background: rgba(10,13,22,.8); }
