/* Loading Screen Minimalis - Blur Background */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    animation: containerFadeIn 0.8s ease-out;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi Circle */
.loading-circle {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #B8860B;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.2);
    position: relative;
}

.loading-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Text */
.loading-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: textFade 3s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes textFade {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(0);
        color: rgba(255, 255, 255, 0.6);
    }
    50% { 
        opacity: 1;
        transform: translateY(-2px);
        color: #B8860B;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .loading-circle {
        width: 60px;
        height: 60px;
        border-width: 2px;
        margin-bottom: 20px;
    }
    
    .loading-circle::before {
        border-width: 2px;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
    }
    
    .loading-text {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .loading-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .loading-text {
        font-size: 12px;
        letter-spacing: 1px;
    }
}
