.simple-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #001a66 0%, rgba(0, 18, 51, 0.98) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.simple-loader {
    position: relative;
    width: clamp(80px, 15vw, 120px);
    aspect-ratio: 1;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #ff9900;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-circle:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(255, 153, 0, 0.7);
    animation-duration: 0.8s;
}

.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(24px, 5vw, 32px);
    color: #ff9900;
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3vw, 16px);
    white-space: nowrap;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.simple-loader-container.loaded {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .simple-loader {
        width: 80px;
    }
    
    .loader-text {
        bottom: -30px;
        font-size: 14px;
    }
}