/* Tipografías */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #1a1a1a;
    color: #eee;
}

/* Encabezado */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #2b0000, #1a0000);
    border-bottom: 4px solid gold;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0;
    color: gold;
}

header p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #e2d5a8;
}

/* Contenedor del reproductor */
.player-container {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

/* Tarjeta del reproductor */
.player-card {
    background: #2a2a2a;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
    text-align: center;
    border: 1px solid #444;
}

/* Título del audio */
.audio-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffd700;
    letter-spacing: 1px;
}

/* --- ESTILOS PARA LA NUEVA SECCIÓN DE IMAGEN --- */
.image-section {
    margin-bottom: 30px; /* Separación entre la imagen y el reproductor */
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden; /* Asegura que el borde rodee la imagen y el epígrafe */
    background: #1f1f1f;
}

.image-section img {
    width: 100%; /* La imagen ocupa todo el ancho de la sección */
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 300px; /* Limita la altura de la imagen para que no sea muy grande */
}

.image-caption {
    font-size: 0.85rem;
    color: #aaa;
    margin: 10px 0;
    padding: 0 15px 10px 15px; /* Relleno alrededor del texto del epígrafe */
    font-style: normal;
}
/* --------------------------------------------- */


/* Reproductor */
audio {
    width: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.2));
    margin-bottom: 15px;
}

/* Créditos */
.credits {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #cfcfcf;
    font-style: italic;
}

/* Pie de página */
footer {
    text-align: center;
    padding: 20px;
    background: #0f0f0f;
    border-top: 2px solid #333;
    font-size: 0.9rem;
    color: #999;
}