.oracle-app {
  background: radial-gradient(circle at 15% 15%, rgba(124, 255, 196, 0.14), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(106, 217, 255, 0.12), transparent 50%),
    #050606;
}

.voice-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.voice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.voice-button {
  appearance: none;
  border: 1px solid rgba(124, 255, 196, 0.45);
  background: linear-gradient(180deg, rgba(124, 255, 196, 0.12), rgba(106, 217, 255, 0.06));
  color: rgba(246, 247, 248, 0.92);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.voice-button:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 255, 196, 0.75);
  box-shadow: 0 0 18px rgba(124, 255, 196, 0.18);
}

.voice-button:active {
  transform: translateY(0px);
}

.voice-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 247, 248, 0.65);
  font-size: 0.95rem;
}

.voice-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.voice-dot.live {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(124, 255, 196, 0.4);
}

.voice-hint {
  margin-top: 10px;
  color: rgba(246, 247, 248, 0.42);
  font-size: 0.9rem;
}
