/* ===== TRULY YOURS DSP – NEON THEME ===== */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000000;
  color: #ffffff;
}

/* Header / Nav */
header {
  padding: 20px;
  border-bottom: 2px solid #8a2be2;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  color: #ff2bd1;
  text-shadow: 0 0 10px #ff2bd1;
}

nav {
  margin-top: 15px;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.nav-home { color: #00f7ff; text-shadow: 0 0 8px #00f7ff; }
.nav-upload { color: #b6ff00; text-shadow: 0 0 8px #b6ff00; }
.nav-listen { color: #ff9f00; text-shadow: 0 0 8px #ff9f00; }

nav a:hover {
  opacity: 0.8;
}

/* Main Sections */
section {
  padding: 60px 20px;
  text-align: center;
}

h1, h2 {
  margin-bottom: 15px;
}

.neon-purple {
  color: #a855f7;
  text-shadow: 0 0 12px #a855f7;
}

.neon-pink {
  color: #ff2bd1;
  text-shadow: 0 0 12px #ff2bd1;
}

.neon-blue {
  color: #00f7ff;
  text-shadow: 0 0 12px #00f7ff;
}

.neon-green {
  color: #b6ff00;
  text-shadow: 0 0 12px #b6ff00;
}

.neon-orange {
  color: #ff9f00;
  text-shadow: 0 0 12px #ff9f00;
}

/* Buttons */
button {
  margin-top: 25px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ff2bd1, #8a2be2, #00f7ff);
  color: #000;
  box-shadow: 0 0 20px #ff2bd1;
}

button:hover {
  box-shadow: 0 0 30px #00f7ff;
}

/* Upload Input */
input[type="file"] {
  margin-top: 20px;
  padding: 12px;
  background: #111;
  color: #fff;
  border: 2px solid #ff2bd1;
  box-shadow: 0 0 10px #ff2bd1;
}

/* Footer */
footer {
  padding: 30px;
  text-align: center;
  color: #888;
  border-top: 1px solid #333;
}
/* Song card hover glow */
.track-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.track-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(255, 45, 209, 0.6);
}

/* Audio control focus glow */
audio:focus,
audio:hover {
  outline: none;
  box-shadow: 0 0 18px #00f7ff;
  border-radius: 8px;
}

/* Soft pulse animation */
@keyframes softPulse {
  0%   { box-shadow: 0 0 10px rgba(0, 247, 255, 0.3); }
  50%  { box-shadow: 0 0 22px rgba(0, 247, 255, 0.6); }
  100% { box-shadow: 0 0 10px rgba(0, 247, 255, 0.3); }
}

.now-playing {
  animation: softPulse 2.5s infinite;
}
