.hp-bar {
  width: 100%;
  height: 24px;
  background: #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 8px 0;
}
.hp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745, #20c997);
  transition: width 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.player-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
}
.player-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(36, 129, 204, 0.3);
}
.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.player-name {
  font-weight: bold;
  font-size: 16px;
}
.player-class {
  font-size: 14px;
  color: var(--secondary);
}
.timer {
  position: fixed;
  top: 16px;
  right: 16px;
  background: var(--danger);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
  z-index: 100;
}
.action-button {
  background: #2481cc;
  border: 2px solid #2481cc;
  color: white;
  padding: 16px;
  border-radius: 12px;
  margin: 8px 0;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
}
.action-button:active {
  background: #1a5f99;
  border-color: #1a5f99;
  color: white;
  transform: scale(0.98);
}
.action-letter {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: white;
  color: #2481cc;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
  margin-right: 12px;
}
