/*
By ONTOP
*/
Template: asli

.typing-word {
    display: inline-block;       
    opacity: 0;                  
    position: relative;
    will-change: transform, opacity, filter; 
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
.typing-word.animate {
    animation: cinematicImpact 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.5s;
}
@keyframes cinematicImpact {
    0% {
        opacity: 0;
        letter-spacing: 1em;      
        filter: blur(12px);       
        transform: scale(2.5) translateZ(0); 
        color: #ffffff;           
        text-shadow: 0 0 50px rgba(255,255,255,0.8); 
    }
    40% {
        opacity: 1;
    }
    60% {
        letter-spacing: normal;   
        filter: blur(0);          
        transform: scale(0.9);    
        color: #ffffff;
        text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 40px #e8e6e0; 
    }
    100% {
        letter-spacing: normal;
        transform: scale(1);      
        filter: blur(0);
        color: inherit;           
        text-shadow: none;        
        opacity: 1;
    }
}