body {
  font-family: "Poppins", sans-serif;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.tool-option {
  transition: all 0.3s ease;
}
.tool-option:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.tool-option.selected {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}
.dancing-btn {
  animation: dance 2s ease-in-out infinite;
}
@keyframes dance {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.05) rotate(-2deg);
  }
  50% {
    transform: scale(1.1) rotate(2deg);
  }
  75% {
    transform: scale(1.05) rotate(-1deg);
  }
}
.highlight-word {
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}
.logo-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}
.floating {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  from {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
  }
  to {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.8);
  }
}
