@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

:root {
  --bg-blue: #002d62;
  --bg-blue-light: #00509e;
  --gold: #ffd700;
  --icon-color: #ffffff;
}

body {
  /* Orden corregido: comienza en azul, pasa a dorado, regresa a azul */
  background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-blue-light) 50%, var(--gold) 80%, var(--bg-blue) 100%);
  background-size: 300% 300%;
  animation: gradientBG 30s ease infinite; /* Animación más lenta para que el dorado sea breve */
  color: #fff;
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- REESTRUCTURACIÓN DE BOTONES Y CONTROLES (Para que no desaparezcan) --- */
.player {
  background-color: rgba(0, 45, 98, 0.4);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 30px;
  width: 320px;
  text-align: center;
  backdrop-filter: blur(15px);
  z-index: 10;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px; /* Asegura espacio entre botones */
}

.btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 15px;
  transition: transform 0.2s, background 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.btn svg {
  width: 24px;
  height: 24px;
  fill: var(--icon-color);
}

.btn-play-pause {
  background-color: var(--gold); /* Botón central dorado para resaltar */
  width: 70px;
  height: 70px;
}

.btn-play-pause svg {
  fill: var(--bg-blue); /* Ícono azul sobre botón dorado */
  width: 40px;
  height: 40px;
}

/* --- BOTÓN DE ESTADO --- */
.status-btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 20px;
  color: var(--icon-color);
  padding: 8px 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

.status-btn.online {
  background-color: var(--gold);
  color: var(--bg-blue);
}

/* Conserva el resto de tus clases originales (.floating-notes, .social-links, etc.) aquí debajo */