/* Global AMC Loader Overlay Styles */
.amc-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.amc-loader-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
}

.loader-logo {
    width: 70px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

.logo-pulse {
    animation: logoPulse 2.5s infinite ease-in-out;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.85; }
    50% { transform: scale(1); opacity: 1; }
}

.loader-progress-container {
    position: absolute;
    bottom: -15px;
    width: 210px;
    height: 10px;
    background: rgba(0, 51, 153, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(30, 60, 114, 0.3);
    transition: width 0.4s cubic-bezier(0.1, 0.5, 0.1, 1);
}

.loader-text {
    font-weight: 800;
    color: #1e3c72;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 45px;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

#amcLoaderPercent {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-right: 5px;
}
