/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0f17;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

#loader.loader-hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    width: 100px;
    height: 100px;
    animation: pulse 1s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .loader-logo {
        width: 60px;
        height: 60px;
        animation: pulse 1.2s ease-in-out infinite;
    }
}