/* Fuente y colores */
body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a12;
    color: #f5f5f7;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Estilos del Header */
header {
    background: linear-gradient(90deg, #ff2a6d, #05d9e8);
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    color: #0a0a12;
}

/* Menú de Navegación */
nav {
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #05d9e8;
}

/* Secciones */
section {
    margin: 40px auto;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(20, 20, 35, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(5, 217, 232, 0.3);
}

/* Estilos del Grid de Álbumes */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Tarjeta de Álbum */
.album-card {
    background: rgba(20, 20, 35, 0.9);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(5, 217, 232, 0.2);
    border: 1px solid rgba(255, 42, 109, 0.3);
}

.album-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 42, 109, 0.4);
}

/* Imagen de la portada */
.album-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(255, 42, 109, 0.4);
}

/* Título del álbum */
.album-card h3 {
    font-size: 1.1rem;
    color: #f5f5f7;
    font-weight: bold;
    margin: 5px 0;
}

/* Fecha de lanzamiento */
.album-card p {
    font-size: 0.9rem;
    color: #ff2a6d;
    font-weight: bold;
}

/* Título de la sección */
.section-title {
    font-size: 1.5rem;
    color: #05d9e8;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Ajuste en la sección de los últimos lanzamientos */
.ultimos-lanzamientos {
    background: linear-gradient(180deg, rgba(5, 217, 232, 0.15), rgba(255, 42, 109, 0.15));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(5, 217, 232, 0.3);
}




/* Botones */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none;
    color: #0a0a12;
    background: linear-gradient(90deg, #ff2a6d, #05d9e8);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(90deg, #05d9e8, #ff2a6d);
    transform: scale(1.05);
}

/* Estilos del Álbum Individual */
.album-cover {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(255, 42, 109, 0.3);
}

/* Lista de Enlaces */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    text-decoration: none;
    color: #ff2a6d;
    font-weight: bold;
}

ul li a:hover {
    color: #05d9e8;
}

/* Footer */
footer {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(10, 10, 18, 0.9);
    font-size: 14px;
}

/* Lista de canciones */
.song-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

/* Caja de cada canción */
.song-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 10px;
    margin: 10px 0;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Resaltar la canción en reproducción */
.song-item.playing {
    background: rgba(255, 42, 109, 0.2);
    box-shadow: 0 0 10px rgba(255, 42, 109, 0.4);
}

/* Título de la canción */
.song-title {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
    color: #f5f5f7;
    text-align: left;
}

/* Visualizador de sonido */
.visualizer-container {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin: 0 10px;
}

.visualizer-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff2a6d, #05d9e8);
    transition: width 0.1s linear;
}

/* Botón de Play/Pause */
.play-btn {
    background: transparent;
    border: none;
    color: #ff2a6d;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.2);
}

/* Cambia el color del botón cuando la canción está en reproducción */
.playing .play-btn {
    color: #05d9e8;
}

.playing .visualizer-bar {
    background: linear-gradient(90deg, #05d9e8, #ff2a6d);
}

/* Estilos de los enlaces de streaming */
/* Centrar los enlaces de streaming en una sola línea */
.streaming-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Alineación de cada ícono con su texto */
.streaming-links li {
    display: flex;
    align-items: center;
}

/* Estilos de los enlaces */
.streaming-links a {
    text-decoration: none;
    color: #ff2a6d;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 8px;
}

/* Efecto hover */
.streaming-links a:hover {
    color: #05d9e8;
    text-shadow: 0 0 8px rgba(5, 217, 232, 0.8);
}

/* Ajustar tamaño y alineación de los íconos */
.streaming-links i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}
