/* Custom Warm Atmosphere Styles */

@keyframes floatSmoke {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-12px) scale(1.3) translateX(4px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-24px) scale(1.6) translateX(8px);
    opacity: 0;
  }
}

.smoke-particle {
  animation: floatSmoke 2.5s infinite ease-in-out;
}

.smoke-particle-2 {
  animation: floatSmoke 2.8s infinite ease-in-out 0.8s;
}

.smoke-particle-3 {
  animation: floatSmoke 3.2s infinite ease-in-out 1.6s;
}

@keyframes warmGlow {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(251, 191, 36, 0.9));
  }
}

.window-glow {
  animation: warmGlow 3s infinite ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
  background: rgba(224, 122, 95, 0.3);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(224, 122, 95, 0.6);
}
