.egg {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.egg span {
  position: fixed;
  padding-right: 15px;
  padding-top: 10px;
  color: var(--accent);
}

.egg.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

body.matrix-party {
  background-color: #003300 !important;
  transition: background-color 0.3s ease;
}
