/* Loader Styles */
#loader {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease-out, visibility 0.4s;
}

.bunny-hop {
    animation: hop 0.8s infinite alternate ease-in-out;
    font-size: 3rem;
}

@keyframes hop {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}
