.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.logo {
    position: absolute;
    width: 45px;
    height: 45px;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #9ca3af;
    animation: dotColor 1.6s linear infinite;
    z-index: 1;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -9px;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    transform: rotate(0deg) translateY(-45px);
    animation-delay: 0s;
}

.dot:nth-child(3) {
    transform: rotate(45deg) translateY(-45px);
    animation-delay: -0.2s;
}

.dot:nth-child(4) {
    transform: rotate(90deg) translateY(-45px);
    animation-delay: -0.4s;
}

.dot:nth-child(5) {
    transform: rotate(135deg) translateY(-45px);
    animation-delay: -0.6s;
}

.dot:nth-child(6) {
    transform: rotate(180deg) translateY(-45px);
    animation-delay: -0.8s;
}

.dot:nth-child(7) {
    transform: rotate(225deg) translateY(-45px);
    animation-delay: -1s;
}

.dot:nth-child(8) {
    transform: rotate(270deg) translateY(-45px);
    animation-delay: -1.2s;
}

.dot:nth-child(9) {
    transform: rotate(315deg) translateY(-45px);
    animation-delay: -1.4s;
}

@keyframes dotColor {
    0%, 50%, 100% {
        background-color: #9ca3af;
    }
    6.25% {
        background-color: #6b9bb8;
    }
    12.5%, 18.75% {
        background-color: #4dd0e1;
    }
    31.25% {
        background-color: #6b9bb8;
    }
}

.loading-text {
    display: none;
}

.loader-container.hide {
    display: none;
}
