    /* Reset básico y fondo */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            width: 100%;
            height: 100%;
            
            background-color: #05050a;
            font-family: sans-serif;
        }

        /* Contenedor de la Intro */
        /* Contenedor de la animación fija */
        #intro {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #030712; /* El fondo oscuro que uses */
            z-index: 9999; /* Siempre por encima de todo */
            overflow: hidden;
            pointer-events: all;
        }

        /* El contenido real de tu aplicación/landing */
        #main-content {
            opacity: 0;
            visibility: hidden; /* Evita interacciones accidentales iniciales */
            will-change: opacity; /* Optimiza el renderizado de la transición */
            color:white;
        }
        .background {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, #0a1128 0%, #05050a 100%);
            z-index: 1;
        }

        /* Lienzo SVG para el Reno */
        #scene {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        /* Núcleo de Energía (Chispa maestra) */
        #energy-core {
            position: absolute;
            width: 16px;
            height: 16px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 12px #00F7FF, 0 0 24px #00F7FF, 0 0 48px #ffffff;
            transform: translate(-50%, -50%);
            z-index: 3;
            will-change: left, top, transform;
        }

        /* Partículas dinámicas generadas por JS */
        .energy-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            box-shadow: 0 0 8px #00F7FF;
            transform: translate(-50%, -50%);
            z-index: 3;
            pointer-events: none;
        }

        /* Sección Hero (Se revelará después de la Intro) */
        #hero {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #05050a;
            z-index: 10;
        }