.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.loader-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 100px;
    height: 100px;
    position: absolute;
    animation: float 1.5s ease-in-out infinite;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: wave 1.5s ease-in-out infinite;
}

.loader-circle:nth-child(2) {
    border-color: #D7D8D2;
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    border-color: #8B8B8B;
    animation-delay: 0.4s;
}

.loader-circle:nth-child(4) {
    border-color: #D7D8D2;
    animation-delay: 0.6s;
}

@keyframes wave {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
} 