/* assets/css/landing-preloader.css */

#landing-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #07080C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#landing-preloader.hide {
    transform: scale(1.2);
    opacity: 0;
    pointer-events: none;
}

#landing-preloader.exit {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.lp-orbit-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.lp-ring-1 {
    width: 100%; height: 100%;
    border-top-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    animation: lp-rotate 2s linear infinite;
}

.lp-ring-2 {
    width: 80%; height: 80%;
    border-right-color: #06b6d4;
    animation: lp-rotate 1.5s linear infinite reverse;
}

.lp-ring-3 {
    width: 60%; height: 60%;
    border-bottom-color: #818cf8;
    animation: lp-rotate 1s linear infinite;
}

.lp-logo {
    width: 60px;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
    animation: lp-pulse 1.5s ease-in-out infinite alternate;
}

.lp-text {
    margin-top: 40px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.lp-loading-bar {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.lp-loading-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 40%; height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    animation: lp-bar 1.5s infinite ease-in-out;
}

@keyframes lp-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes lp-pulse { from { transform: scale(0.9); } to { transform: scale(1.1); } }
@keyframes lp-bar { 0% { left: -40%; } 100% { left: 100%; } }
