/* Agency Preloader Design System */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0b0b0b;
}

.preloader-content {
    text-align: center;
    z-index: 10;
}

.preloader-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.preloader-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.preloader-logo .logo-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    box-shadow: 0 0 15px #00FF88;
}

.loader-track {
    width: 240px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #00FF88);
}

.loader-percentage {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.reveal-curtain-top, .reveal-curtain-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50.5%;
    background: #0b0b0b;
    z-index: 5;
}

.reveal-curtain-top { top: 0; }
.reveal-curtain-bottom { bottom: 0; }
