#recordingIndicator {
  display: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: #ff4444;
  letter-spacing: 0.1em;
  text-align: center;
}

#recordingIndicator.active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: recBlink 1s ease-in-out infinite;
}

#recordingIndicator.active::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  animation: recDot 1s ease-in-out infinite;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes recDot {
  0%, 100% { box-shadow: 0 0 4px #ff4444; }
  50% { box-shadow: 0 0 10px #ff4444, 0 0 20px rgba(255, 68, 68, 0.4); }
}
