@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(195, 0, 255, 0.4), 0 0 40px rgba(255, 102, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(195, 0, 255, 0.6), 0 0 60px rgba(255, 102, 255, 0.4);
  }
}

@keyframes countdown-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

* {
  scrollbar-width: thin;
  scrollbar-color: #C300FF #0F0F1A;
}

body {
  background: #000000;
  color: #E0E0E0;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  overflow-x: hidden;
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out;
}

.glow-border {
  border: 2px solid #C300FF;
  box-shadow: 0 0 20px rgba(195, 0, 255, 0.3), inset 0 0 20px rgba(195, 0, 255, 0.1);
}

.glow-text {
  text-shadow: 0 0 20px rgba(195, 0, 255, 0.5);
}

.animate-glow {
  animation: glow-pulse 2s infinite;
}

.animate-countdown {
  animation: countdown-pulse 1.5s infinite;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0F0F1A;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #C300FF 0%, #FF66FF 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FF66FF 0%, #C300FF 100%);
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C300FF 0%, #FF66FF 100%);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(195, 0, 255, 0.8);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C300FF 0%, #FF66FF 100%);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(195, 0, 255, 0.8);
  border: none;
}

.premium-gradient {
  background: linear-gradient(135deg, #000000 0%, #0F0F1A 100%);
}

.neon-border {
  border: 1px solid #C300FF;
  box-shadow: 0 0 10px rgba(195, 0, 255, 0.5);
}

.neon-glow {
  box-shadow: 0 0 20px rgba(195, 0, 255, 0.6), 0 0 40px rgba(255, 102, 255, 0.3);
}