/*🔵====single-musica_ost.php====*/
/* 🎵 ESTILOS PARA SINGLE MUSICA OST */

.banner-ost {
    background-size: cover;
    background-position: center;
    padding: 300px 20px; /* Aumenta el alto */
    position: relative;
    margin: 0 auto 40px;
    width: 95vw; /* Más ancho, casi todo el viewport */
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    border-radius: 0 0 12px 12px;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.banner-overlay h1.entry-title {
    font-size: 2.5em;
    color: #fff;
    margin: 0;
}

.descripcion-ost {
    flex: 1;
    color: #111;
    font-size: 16px;
    line-height: 1.6;
}

.audio-player {
    margin-top: 20px;
}

.boton-descarga {
    margin-top: 20px;
}

.download-button {
    background: #f8f8f8;;
    color: #f8f8f8;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.download-button:hover {
    background: #005f8d;
}

.albumes-ost {
    margin-top: 40px;
}

.album-grid-frontend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.album-card {
    background: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
    border: 1px solid rgba(200, 200, 200, 0.4);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(5px); /* Efecto glassmorphism */
    -webkit-backdrop-filter: blur(5px);
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s ease;
}

.album-card:hover {
    transform: translateY(-3px);
}

.album-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border-radius: 8px;
}

.album-title {
    font-size: 1em;
    margin: 10px 0;
    font-weight: bold;
    color: #f8f8f8;
}

.album-tracklist pre {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
    white-space: pre-wrap;
    font-size: 14px;
    color: #333;
    text-align: left;
    overflow-x: auto;
}

.album-enlaces {
    margin-top: 10px;
    text-align: left;
    color: #f8f8f8;
}

.album-enlaces ul {
    padding-left: 18px;
    margin: 10px 0;
}

.album-enlaces a {
    color: #0073aa;
    text-decoration: underline;
}

.album-enlaces a:hover {
    text-decoration: none;
}

.ver-tracklist-button {
    background: #ff8800;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.ver-tracklist-button:hover {
    background: #e47200;
}

.tracklist-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: left;
}

.cerrar-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
}

/* 🔽 TEXTO DEBAJO DEL BOTÓN DE DESCARGA EN ÁLBUMES */
.texto-descarga {
    margin-top: 12px;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    background: linear-gradient(to right, #222, #333); /* fondo oscuro con degradado */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
