#kramer-speaking-animation {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 200, 0, 0.3);
  animation: pulse 1.2s infinite ease-in-out;
  display: none;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 0.4; }
}

/* Slightly chaotic vibe */

body {
  background: radial-gradient(circle at top left, #fffdf5 0%, #f7f3e9 40%, #e9e1d5 100%);
}

/* You can drop in slightly playful fonts/colors later */
