/* Floating Dream Texts in boxes */
.floating-text {
  position: absolute;
  font-size: 1rem;
  color: #1b4332;
  background: rgba(255, 255, 255, 0.8); /* soft white background */
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  animation: fadeInOut var(--duration, 2s) ease-in-out forwards;
  pointer-events: none;
  max-width: 90vw;
  overflow: hidden;
}

/* Animation with quicker fade-out */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .floating-text {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
}
