.music-hero {
  padding: 180px 5% 100px;
  text-align: center;
  background: linear-gradient(135deg, #0b0014 0%, #1c003a 100%);
}

.glow-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(90deg, #b400ff, #ff0090, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 80px rgba(180,0,255,0.7);
  margin: 0;
}

.subtitle {
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: #ff0090;
  margin-top: 1rem;
  letter-spacing: 3px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* PLAYER - 100% RESPONSIVE */
.player-section {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.player-wrapper {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(180,0,255,0.5);
  transition: all 0.4s ease;
}

.player-wrapper:hover {
  box-shadow: 0 0 120px rgba(255,0,144,0.8);
  transform: translateY(-8px);
}

/* DISCOGRAPHY */
.discography {
  padding: 80px 5% 120px;
  text-align: center;
}

.discography h2 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 4rem;
  background: linear-gradient(90deg, #b400ff, #ff0090);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.release-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  aspect-ratio: 1;
}

.release-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 80px rgba(180,0,255,0.6);
}

.release-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s;
}

.release-card:hover img {
  filter: brightness(0.35);
}

.release-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.release-info h3 {
  font-size: 1.6rem;
  margin: 0 0 0.4rem 0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
}

.release-info p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: rgba(180,0,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(180,0,255,0.9);
  pointer-events: none;
}

.release-card:hover .play-btn {
  opacity: 1;
  animation: pulse 2s infinite;
}

.play-btn.soon {
  background: #333;
  font-size: 1rem;
  width: 100px; height: 50px;
  animation: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  opacity: 0;
  transition: opacity 0.5s;
  padding: 1rem;
}

.release-card:hover .overlay { opacity: 1; }

.stream-link {
  background: linear-gradient(45deg, #b400ff, #ff0090);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(180,0,255,0.8); }
  70% { box-shadow: 0 0 0 30px rgba(180,0,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,0,255,0); }
}

/* Mobile-first fixes */
@media (max-width: 768px) {
  .player-wrapper { height: 300px; }
  iframe { height: 100% !important; }
  .release-info h3 { font-size: 1.4rem; }
}
