/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.glow-text {
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5), 0 0 20px rgba(168, 85, 247, 0.3);
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

.glow-button {
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
  animation: button-glow 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5), 0 0 20px rgba(168, 85, 247, 0.3);
  }
  to {
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.8), 0 0 30px rgba(168, 85, 247, 0.5);
  }
}

@keyframes button-glow {
  from {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
  }
  to {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.6), 0 0 40px rgba(168, 85, 247, 0.3);
  }
}

/* Custom slider styles */
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ef4444, #a855f7);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

input[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ef4444, #a855f7);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* Spooky scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1f2937;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #7c3aed, #ef4444);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #8b5cf6, #f87171);
}

/* Particle effect background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(168, 85, 247, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(239, 68, 68, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(236, 72, 153, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: float 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-200px) translateX(-200px); }
}