/* bandas-style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Cambio a negro absoluto */
    background-color: #000000; 
    color: #e0e0e0;
    margin: 0;
    padding: 20px 0 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* --- Estilos del Encabezado/Logo --- */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 10px;
}

.logo-banda {
    max-width: 400px;
    width: 80%;
    height: auto;
}

/* --- Contenedores de Álbumes --- */
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 95%;
    /* Un gris muy oscuro para que el contenedor se vea sutilmente sobre el negro */
    background-color: #0f0f0f; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.9);
    border: 1px solid #222; /* Borde más oscuro para elegancia */
    transition: transform 0.3s ease;
}

.container:hover {
    transform: scale(1.01);
    border-color: #c0392b; /* El rojo característico al pasar el ratón */
}

.video-section {
    flex: 2;
    min-width: 320px;
    aspect-ratio: 16 / 9;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 280px;
}

h2 {
    color: #c0392b;
    margin-top: 0;
    font-size: 1.6rem;
    text-transform: uppercase;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 10px;
}

.data {
    margin-bottom: 12px;
}

.label {
    font-weight: bold;
    color: #777;
    text-transform: uppercase;
    display: block;
    font-size: 0.7rem;
}

.value {
    font-size: 1.1rem;
    color: #fff;
}

/* --- Ajustes para Móvil --- */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .info-section {
        padding: 20px;
        text-align: center;
    }
    .logo-banda {
        max-width: 250px;
    }
}