/* Custom Styles for Riyadh Night Cruise */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

body {
  margin: 0;
  padding: 0;
  background-color: #090b10;
  color: #ffffff;
  font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* Atmospheric Night Vignette Overlay */
.night-vignette {
  background: radial-gradient(circle at center, transparent 40%, rgba(5, 7, 10, 0.6) 80%, rgba(2, 3, 5, 0.95) 100%);
}

/* Range input styling */
input[type=range] {
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.8);
  cursor: pointer;
}

/* Glassmorphism Panels */
.glass-panel {
  background: rgba(13, 16, 23, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Keyframe for Audio Waveform Animation */
@keyframes waveBar {
  0%, 100% { height: 4px; }
  50% { height: 22px; }
}

.bar-anim {
  animation: waveBar 1.2s ease-in-out infinite alternate;
}

/* Neon text shadows */
.neon-amber {
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

.neon-cyan {
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

.neon-emerald {
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}