/* ===== FIGHT HUD ===== */
.fight-hud {
  display: flex;
  align-items: flex-start;
  padding: 12px 16px 8px;
  gap: 12px;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.hud-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hud-side.right { align-items: flex-end; }
.hud-side .hud-name {
  font-size: 9px;
  letter-spacing: 1px;
}
.hud-side.left .hud-name { color: var(--accent-blue); }
.hud-side.right .hud-name { color: var(--accent-red); }

.health-bar-wrap {
  width: 100%;
  height: 22px;
  background: #1a1a2a;
  border: 2px solid #333;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.health-bar {
  height: 100%;
  transition: width 0.3s ease-out;
  position: relative;
}
.hud-side.left .health-bar {
  background: linear-gradient(180deg, #33ccff 0%, #1188cc 100%);
  border-right: 2px solid rgba(255,255,255,0.3);
}
.hud-side.right .health-bar {
  background: linear-gradient(180deg, #ff4466 0%, #cc2244 100%);
  float: right;
  border-left: 2px solid rgba(255,255,255,0.3);
}
.health-bar-wrap .hp-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7px;
  color: white;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
  z-index: 2;
}
.hud-side.left .hp-text { left: 8px; }
.hud-side.right .hp-text { right: 8px; }

.special-bar-wrap {
  width: 100%;
  height: 8px;
  background: #111;
  border: 1px solid #2a2a3a;
  border-radius: 1px;
  overflow: hidden;
}
.special-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), #ffaa00);
  width: 0%;
  transition: width 0.2s;
}
.special-bar.ready {
  animation: specialGlow 0.6s ease-in-out infinite;
}
@keyframes specialGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
}

.hud-timer {
  font-size: 28px;
  color: var(--accent-gold);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
  min-width: 60px;
  text-align: center;
  padding-top: 2px;
  font-family: 'Silkscreen', monospace;
}

.hud-special-label {
  font-size: 6px;
  color: #555;
  letter-spacing: 1px;
}

/* ===== MOVE LIST ===== */
.move-list {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  padding: 6px 14px;
  border-radius: 3px;
}
.move-list .move {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 6px;
  color: #888;
}
.move-list .key {
  background: #333;
  border: 1px solid #555;
  border-radius: 2px;
  padding: 2px 5px;
  font-size: 7px;
  color: #ccc;
  min-width: 16px;
  text-align: center;
}
.move-list .move.on-cooldown .key {
  background: #441111;
  border-color: #663333;
  color: #664444;
}
