@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
  font-family: 'Bebas Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  overflow-x: hidden;
}

.psychedelic-title {
  background: linear-gradient(45deg, #FF006E, #0066FF, #FF9E00, #FF006E);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: linear-gradient(to right, #FF006E, #0066FF, #FF9E00);
  border-radius: 5px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #FFD60A;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #FFD60A;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
}

button {
  transition: all 0.2s ease;
}

button:active {
  transform: scale(0.95);
}

/* Scanline effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
}

/* Glowing borders */
.border-pink-500 {
  animation: pinkGlow 2s ease-in-out infinite alternate;
}

.border-cyan-500 {
  animation: cyanGlow 2s ease-in-out infinite alternate;
}

.border-orange-500 {
  animation: orangeGlow 2s ease-in-out infinite alternate;
}

@keyframes pinkGlow {
  from { box-shadow: 0 0 20px rgba(255, 0, 110, 0.5); }
  to { box-shadow: 0 0 30px rgba(255, 0, 110, 0.8); }
}

@keyframes cyanGlow {
  from { box-shadow: 0 0 20px rgba(0, 102, 255, 0.5); }
  to { box-shadow: 0 0 30px rgba(0, 102, 255, 0.8); }
}

@keyframes orangeGlow {
  from { box-shadow: 0 0 20px rgba(255, 158, 0, 0.5); }
  to { box-shadow: 0 0 30px rgba(255, 158, 0, 0.8); }
}