body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f9; /* Fondo muy claro */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* TÍTULO EN VIVO */
.video-header h1 {
    text-align: center;
    color: #0d47a1; /* Color azul oscuro para el título */
    margin-bottom: 20px;
    font-size: 2.5em;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

/* CONTENEDOR DEL IFRAME CON EL BORDE PLATEADO */
.video-container {
    position: relative;
    width: 100%;
    /* Relación de aspecto 16:9, ajusta el 56.25% si tu video es diferente */
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    
    /* Estilo Moderno y Borde Plateado */
    border: 5px solid #c0c0c0; /* Borde Plateado */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra suave para un look flotante */
    border-radius: 8px; /* Esquinas ligeramente redondeadas */
    background-color: #fff;
    margin-bottom: 40px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* SECCIÓN DE LA GALERÍA */
.gallery-section h2 {
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap; /* Permite que los videos salten de línea en pantallas pequeñas */
    gap: 20px; /* Espacio entre los elementos de la galería */
    justify-content: flex-start;
}

.gallery-item {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 280px; /* Ancho fijo para cada miniatura */
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px); /* Efecto al pasar el ratón */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item p {
    padding: 10px;
    margin: 0;
    text-align: center;
    font-size: 0.9em;
    font-weight: bold;
}