.music-controls {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  gap: 10px;
  z-index: 999;
}

/* --- BOTÓN DISCORD --- */
.discord-btn {
  background: rgba(10, 10, 10, 0.85);
  border: 2px solid #ffb300;
  color: #fff;
  padding: 10px 22px;
  font-family: "Marcellus SC", serif;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 179, 0, 0.2);
}
.discord-btn:hover {
  background: #ffb300;
  color: #000;
  box-shadow: 0 0 15px #ffb300;
}

/* --- BOTÓN DE MÚSICA --- */
.music-btn {
  width: 48px;
  height: 48px;
  background: rgba(10, 10, 10, 0.85);
  border: 2px solid #ffb300;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 179, 0, 0.2);
}

.music-btn:hover {
  background: #ffb300;
  color: #000;
  box-shadow: 0 0 15px #ffb300;
}

/* --- ESTADO ACTIVO (cuando la música suena) --- */
.music-btn.active {
  background: #ffb300;
  color: #000;
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(255, 179, 0, 0.4); }
  100% { box-shadow: 0 0 20px rgba(255, 179, 0, 0.8); }
}

/* === BOTÓN SUBIR (IGUAL ESTILO DORADO) === */
#scrollTopBtn {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
  border: 1px solid #ffb300;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 179, 0, 0.2);
}

#scrollTopBtn:hover {
  background: #ffb300;
  color: #000;
  box-shadow: 0 0 16px #ffb300;
  transform: translateY(-2px);
}

/* Para que no se vea hasta que hagas scroll */
#scrollTopBtn {
  opacity: 0;
  pointer-events: none;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
