/* --- GLOBAL RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  overflow: hidden;
  font-family: "Orbitron", sans-serif;
  color: cyan;
}

/* --- PARTICLE BACKGROUND --- */
#bgParticles {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* --- HOLOGRAM AVATAR --- */
#avatarPane {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  filter: drop-shadow(0 0 40px cyan);
  transition: opacity 2s ease;
  z-index: 3;
}

#avatarPane.active {
  opacity: 1;
}

#avatarVid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- SUBTITLES --- */
#caption {
  font-size: 1rem;
  text-shadow: 0 0 12px cyan;
  opacity: 0.9;
  animation: captionFade 3s infinite alternate ease-in-out;
}

@keyframes captionFade {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* --- ELEVENLABS WIDGET (DEFAULT POSITION) --- */
elevenlabs-convai {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}










