/* Advanced Multi-Light Shine Effect */
/* Kept empty or minimal as requested to remove complex entrance effects. */
/* The core shine text effect can be preserved if needed, but the bloom/decoder parts are removed. */

@keyframes multi-slide {
    0% { background-position: -150% 0, 0 0; }
    100% { background-position: 150% 0, 0 0; }
}

.shine-effect {
    position: relative;
    background-image: 
        linear-gradient(
            120deg, 
            transparent 20%, 
            rgba(255, 255, 255, 0.1) 25%, 
            transparent 30%, 
            rgba(255, 255, 255, 0.6) 45%, 
            rgba(255, 255, 255, 0.9) 50%, 
            rgba(255, 255, 255, 0.6) 55%, 
            transparent 70%, 
            rgba(255, 255, 255, 0.2) 75%, 
            transparent 80%
        ),
        var(--gradient-main) !important;
    background-size: 200% 100%, 100% 100% !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: multi-slide 3s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

.shine-effect-fast { animation-duration: 2.5s; }
.shine-effect-delay { animation-delay: 0.5s; }
