.public-listening-avatar-cue {
  position: fixed;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6d35db;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: none;
  filter: drop-shadow(0 3px 7px rgba(53, 25, 111, .24));
  animation: public-cue-float 1.05s ease-in-out infinite;
}

.public-listening-avatar-cue svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.public-listening-avatar-cue span {
  padding: 4px 8px;
  border: 1px solid rgba(109, 53, 219, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 12px rgba(53, 25, 111, .14);
  white-space: nowrap;
}

.avatar-audio-button.public-listening-play-target {
  animation: public-avatar-pulse 1.05s ease-in-out infinite;
}

@keyframes public-cue-float {
  0%, 100% {
    transform: translate3d(7px, 8px, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotate(-12deg);
  }
}

@keyframes public-avatar-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(109, 53, 219, .36);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(109, 53, 219, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-listening-avatar-cue,
  .avatar-audio-button.public-listening-play-target {
    animation: none;
  }
}
