/* Custom animations and styles */

.coffee-steam {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: steam 3s infinite;
}

.burger-float {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: rgba(255, 199, 44, 0.3);
  border-radius: 50%;
  animation: float 4s infinite ease-in-out;
}

@keyframes steam {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: translateY(-60px) scale(1.4);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Smooth scrolling for chat */
.overflow-y-auto {
  scrollbar-width: thin;
  scrollbar-color: #FFC72C #f1f1f1;
}

.overflow-y-auto::-webkit-scrollbar {
  width: 6px;
}

.overflow-y-auto::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.overflow-y-auto::-webkit-scrollbar-thumb {
  background: #FFC72C;
  border-radius: 10px;
}

.overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background: #DA291C;
}

/* Card hover effects */
.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Pulse animation for surprise button */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .fixed.bottom-6.right-6 .w-96 {
    width: calc(100vw - 2rem);
    max-width: 400px;
  }
}