/* static/css/voice-arena.css */
.voice-arena-modal-content {
  max-width: 900px;
}
.voice-arena-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.va-persona-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.va-persona-section label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}
.va-hud {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.va-stat {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.va-stat-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  font-weight: 700;
}
.va-gauge {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.va-gauge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--val);
  background: var(--indigo);
  transition: width 0.3s ease;
}
.va-stat-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  text-align: right;
}
.va-console {
  background: rgba(10, 12, 18, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.va-transcript {
  height: 200px;
  overflow-y: auto;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-main);
}
.va-system-msg {
  color: var(--text-faint);
  font-style: italic;
}
.va-user-msg {
  color: var(--sky);
}
.va-ai-msg {
  color: var(--indigo);
}
.va-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}
.va-mic-btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 20px;
}
.va-mic-btn.active {
  background: var(--rose);
  box-shadow: 0 4px 16px var(--rose-glow);
  animation: pulse-rose 2s infinite;
}
@keyframes pulse-rose {
  0% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(244, 63, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}
.va-mic-wave {
  flex: 1;
  height: 30px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  display: none;
}
.va-mic-wave.active {
  display: block;
}
.va-mic-wave::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  animation: wave-slide 1s linear infinite;
}
@keyframes wave-slide {
  100% { left: 100%; }
}
.va-whisper-coach {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
