
        
        /* Starfield canvas */
        #starfield {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        

        

        
        .lgrender {
            height: auto;
            position: relative;
            z-index: 3;
            animation: float 16s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .nodesktopshow { display: none; }
        
        @media (max-width: 768px) {
            .nomobileshow { display: none; }
            .nodesktopshow { display: block; }
        }