.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    color: white;
}

.logo-preloader {
    max-width: 200px; 
    animation: blink 1.5s infinite;
    margin-bottom: 20px;
}

.preloader-text {
    font-size: 1.2em;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}