/* Mazaj Preloader - Premium Animated Loading Screen */
:root { --mazaj-brand: #00BAA5; }

#mazaj-preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

#mazaj-preloader::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 186, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 186, 165, 0.08) 0%, transparent 50%);
}

.mazaj-circles {
    position: relative;
    width: 150px; height: 150px;
    margin-bottom: 50px;
}

.mazaj-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.c1 {
    width: 150px; height: 150px;
    top: 0; left: 0;
    border-top-color: var(--mazaj-brand);
    border-right-color: rgba(0, 186, 165, 0.3);
    animation: rotate1 2s linear infinite;
}

.c2 {
    width: 110px; height: 110px;
    top: 20px; left: 20px;
    border-bottom-color: var(--mazaj-brand);
    border-left-color: rgba(0, 186, 165, 0.2);
    animation: rotate2 1.5s linear infinite reverse;
}

.c3 {
    width: 70px; height: 70px;
    top: 40px; left: 40px;
    border-top-color: rgba(0, 186, 165, 0.5);
    animation: rotate1 1s linear infinite;
}

.mazaj-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--mazaj-brand);
}

@keyframes rotate1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.mazaj-bar {
    width: 200px; height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.mazaj-progress {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--mazaj-brand), #00D4C4);
    border-radius: 2px;
}

.mazaj-dots { display: flex; gap: 8px; margin-top: 30px; }
.mazaj-dots span {
    width: 8px; height: 8px;
    background: var(--mazaj-brand);
    border-radius: 50%;
    animation: bounce 0.6s ease-in-out infinite;
}
.mazaj-dots span:nth-child(2) { animation-delay: 0.1s; }
.mazaj-dots span:nth-child(3) { animation-delay: 0.2s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 1; }
}
