body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #0ff 0%, #00f 50%, #000 100%);
  animation: pulseBackground 20s infinite;
  z-index: -1;
}

@keyframes pulseBackground {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid #0ff;
}

.logo {
  font-size: 2em;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

nav a {
  color: #0ff;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

.listen-btn {
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  color: #000;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 10px #0ff;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px #0ff; }
  50% { transform: scale(1.05); box-shadow: 0 0 20px #f0f; }
}

.hero {
  padding: 120px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
}

.hero h1 {
  font-size: 3em;
  color: #ff00ff;
  text-shadow: 0 0 15px #f0f;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  color: #0ff;
  margin-bottom: 20px;
}

.neon-glow {
  box-shadow: 0 0 15px #0ff;
  animation: neonPulse 3s infinite alternate;
}

@keyframes neonPulse {
  from { box-shadow: 0 0 10px #0ff; }
  to { box-shadow: 0 0 25px #f0f; }
}

.djs, .shows {
  padding: 60px 20px;
  text-align: center;
}

.dj-cards, .show-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.dj-card, .show-card {
  background: #1a1a1a;
  padding: 20px;
  border: 1px solid #444;
  border-radius: 15px;
  width: 200px;
  transition: transform 0.3s ease;
}

.dj-card:hover, .show-card:hover {
  transform: scale(1.05);
}

.dj-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 10px;
}

.dj-card p {
  color: #0ff;
  font-weight: bold;
}

.show-card h3 {
  color: #ff00ff;
}

.show-card p {
  color: #ffa500;
}

.neon-border {
  border: 2px solid #0ff;
  box-shadow: 0 0 15px #0ff;
}

.player {
  background: #111;
  padding: 30px 20px;
  text-align: center;
  border-top: 2px solid #0ff;
}

.progress {
  background: #333;
  height: 12px;
  margin: 15px auto;
  width: 70%;
  border-radius: 12px;
  overflow: hidden;
}

.progress .bar {
  background: linear-gradient(90deg, #ff00ff, #0ff);
  width: 50%;
  height: 100%;
  animation: playProgress 10s infinite linear;
}

@keyframes playProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.socials a {
  margin: 0 15px;
  font-size: 1.1em;
  color: #0ff;
  text-decoration: none;
}
