body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    perspective: 1000px;
    position: relative;
}

.logo-container {
    width: 140vw; 
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: zoomInOut 6s infinite alternate ease-in-out; 
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: fadeInZoom 1.5s forwards ease-in-out;
    transform: scale(0.1);
    opacity: 0;
}

.coming-soon-text {
    font-family: 'Netflix Sans', sans-serif;
    font-size: clamp(1rem, 4vw, 3rem);
    color: #e50914;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), 
                 2px 2px 3px rgba(0, 0, 0, 0.3),
                 -1px -1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    z-index: 10;
    /* Ajustes clave para la posiciC3n */
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mail-link {
    text-decoration: none;
}

.mail-text {
    color: #e50914;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    letter-spacing: 0.2em;
    animation: scaleMail 2s infinite alternate ease-in-out;
    text-shadow: 0 0 10px #e50914, 0 0 20px #e50914;
}

/* Animaciones */
@keyframes fadeInZoom {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomInOut {
    from {
        transform: scale(0.6);
    }
    to {
        transform: scale(1.4);
    }
}

@keyframes scaleMail {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}