* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: sans-serif;
        }

        /* 2. Contenedor de Efectos de Fondo */
        .background-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        /* Efecto Neblina (Atmósfera en movimiento)*/ 
        .fog {
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            /* Subimos la opacidad a 0.4 para que se note el cambio */
            background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(0,0,0,0) 70%); 
            filter: blur(50px);
            animation: moveFog 15s infinite alternate ease-in-out;
        }

        /* Efecto Glitch Lila Tenue */
        .glitch-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: transparent;
            animation: lilaGlitch 6s infinite linear;
            opacity: 0.4;
        }

        /* 3. Contenedor de la Imagen Central */
        .logo-container {
            position: relative;
            z-index: 2;
            max-width: 80%;
            max-height: 80%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-container img {
            width: 100%;
            height: auto;
            max-width: 750px; /* Ajusta el tamaño máximo de tu imagen aquí */
            object-fit: contain;
            filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.4)); /* Sutil brillo lila en el logo */
        }

        /* --- ANIMACIONES CSS --- */

        /* Animación para la neblina en movimiento*/ 
        @keyframes moveFog {
            0% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(-5%, 5%) scale(1.1);
            }
            100% {
                transform: translate(5%, -5%) scale(0.9);
            }
        }

        /* Animación de Glitch sutil (intermitencias de luz lila de fondo) */
        @keyframes lilaGlitch {
    0%, 100% {
        box-shadow: inset 0 0 30px rgba(138, 43, 226, 0.1);
        background: rgba(138, 43, 226, 0.01);
    }
    20% {
        box-shadow: inset 5px 0 60px rgba(138, 43, 226, 0.3);
        background: rgba(138, 43, 226, 0.05);
    }
    22% {
        box-shadow: none;
        background: transparent;
    }
    40% {
        box-shadow: inset -5px 0 50px rgba(186, 85, 211, 0.25);
    }
    42% {
        box-shadow: none;
    }
    70% {
        box-shadow: inset 0 0 80px rgba(138, 43, 226, 0.4);
        background: rgba(138, 43, 226, 0.08);
    }
    72% {
        box-shadow: none;
    }
}