/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f4f6f8;
    color: #333;
}

header {
    background: linear-gradient(90deg, #0066cc, #00cc88);
    padding: 15px 0;
}

nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

ul li a:hover {
    color: #ffdd57;
}

.live-container {
    text-align: center;
    padding: 20px;
}

.live-container iframe {
    width: 80%;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.no-live {
    color: red;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}
/* Asegurar que la página use toda la altura */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Usar flexbox para empujar el footer hacia abajo */
body {
    display: flex;
    flex-direction: column;
}

/* El contenido principal ocupará el espacio disponible */
main {
    flex: 1;
}

/* Footer */
footer {
    background-color: #333;
    color: #bbb;
    padding: 40px 0;
    margin-top: auto;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

