.popup-spam {
  position: fixed;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: black;
  background: #c0c0c0; /* Classic Win95 gray */
  padding: 6px 12px;
  border: 2px solid white;
  border-right-color: #7a7a7a;
  border-bottom-color: #7a7a7a;
  border-radius: 0;
  box-shadow:
    inset 1px 1px 0 white,
    inset -1px -1px 0 #7a7a7a;
  z-index: 9999;
  animation: floatAway 6s ease-out forwards;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: none;
  user-select: none;
}

@keyframes floatAway {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  80% {
    opacity: 1;
    transform: translateY(-50px) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-50px) scale(1) rotate(0deg);
  }
}
