.creative-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.creative-loader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    text-align: center;
}

.loader-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.loader-circle:nth-child(1) {
    border-top-color: #6366f1;
    animation-delay: 0s;
}

.loader-circle:nth-child(2) {
    border-right-color: #a855f7;
    animation-delay: 0.3s;
    animation-duration: 1.5s;
}

.loader-circle:nth-child(3) {
    border-bottom-color: #06b6d4;
    animation-delay: 0.6s;
    animation-duration: 2.5s;
}

.loader-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    animation: pulse-loader 1.5s ease-in-out infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-loader {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.loader-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    animation: fade-in-out 1.5s ease-in-out infinite;
}

@keyframes fade-in-out {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}