/* ===== PAGE DE CHARGEMENT ===== */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.loading-page.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-mascot {
    max-width: 800px;
    width: 80%;
    height: auto;
    border-radius: 20px;
    animation: zoomInOut 2s ease-in-out infinite;
}

/* Animation Zoom In/Out */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .loading-mascot {
        width: 70%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .loading-mascot {
        width: 80%;
        max-width: 250px;
    }
}
