body{
            background-color: grey;
            color:black;
        }

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@500;700&display=swap');

/* Fondo general de la página - Gris ultra oscuro mate */
body {
  margin: 0;
  padding: 0;
  background: #121214; 
  font-family: 'Rajdhani', sans-serif;
  color: #e1e1e6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

/* La Ventana Flotante del Reproductor */
.app-window {
  width: 100%;
  max-width: 430px;
  background: #1e1e22; /* Gris oscuro para el cuerpo del reproductor */
  border: 1px solid #2d2d34; /* Borde sutil */
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover suave para simular elevación */
.app-window:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(255, 255, 255, 0.04);
}

/* Barra superior de control de la Ventana */
.window-header {
  background: #18181c; /* Gris más oscuro para diferenciar la barra superior */
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2d2d34;
}

/* Botones circulares (Estilo Mac / SO) */
.window-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot.close { background: #ff5f56; }
.dot.minimize { background: #ffbd2e; }
.dot.maximize { background: #27c93f; }

/* Título centrado en la barra */
.window-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8e8e93;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Mantiene el título perfectamente centrado */
.window-spacer {
  width: 49px; 
}

/* Contenido interior de la ventana */
.window-content {
  padding: 24px;
}

/* Título de la canción y Artista */
.song-info {
  text-align: center;
  margin-bottom: 18px;
}

.song-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.song-artist {
  font-size: 0.85rem;
  color: #a1a1aa; /* Gris intermedio para el artista */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* Contenedor del reproductor de Spotify */
.spotify-embed-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2d2d34;
  background: #18181c;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}

.spotify-embed-container iframe {
  display: block;
}
/* Forzar que el modal se muestre como flex al estar activo */
#auth-modal.active {
  display: flex !important;
}