/* --- PRELOADER STYLES --- */
.preloader-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #ffffff; /* White background to cover everything */
    z-index: 999999; /* Pinakamataas para takpan lahat */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-out;
}

/* Bouncing Cat Animation */
.cat-bouncer {
    font-size: 4rem;
    animation: bounce 0.6s infinite alternate;
}

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

/* Loading Bar */
.loading-bar-container {
    width: 150px;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    width: 50%;
    background: #008080; /* Your Primary Teal Color */
    border-radius: 10px;
    animation: loading 1s infinite linear;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}