/* Eliminar márgenes por defecto */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Evita el scroll si no lo necesitas */
    font-family: 'Arial', sans-serif;
}

/* El vídeo ocupa todo el fondo */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100; /* Lo enviamos bien al fondo */
    transform: translate(-50%, -50%); /* Lo centramos perfecto */
    background-size: cover;
    object-fit: cover; /* Importante para que no se deforme */
}

/* Oscurecemos un poco el vídeo para que el texto resalte */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Negro al 50% de opacidad */
    z-index: -1;
}

/* Centrado del texto */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
}

h1 { font-size: 4rem; margin-bottom: 0.5rem; }
#changing-text { color: #00d1b2; /* Color destacado para el cambio */ }