#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* BLACK BACKGROUND */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-logo {
    width: 140px;
    animation: blinkZoom 1.5s infinite ease-in-out;
    transform-origin: center;
}

/* BLINK + ZOOM */
@keyframes blinkZoom {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .loader-logo {
        width: 100px;
    }
}