#preloader { 
    position: fixed; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 99999; 
    background-color: black; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
} 

#preloader-quote { 
    width: 90%; 
    text-align: center; 
    font-size: 80px; 
    color: #d6d6d6; 
    max-width: 800px; 
    opacity: .5; 
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px; 
    font-weight: 500;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #000, #E9FF71, #000);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
    0% {
        background-position: -300%;
    }
    100% {
        background-position: 300%;
    }
}

/* Prevent scrolling when preloader is active */
body.preloader-active {
    overflow: hidden;
}

@media (max-width: 600px) {
    #preloader-quote {
        font-size: 32px;
        max-width: 95vw;
    }
} 