#earlyLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
#progressContainer {
    width: 300px;
    max-width: 80%;
    margin-top: 20px;
}
#progressBar {
    width: 100%;
    height: 8px;
    background: #e7e9ee;
    border-radius: 4px;
    overflow: hidden;
}
#progressFill {
    height: 100%;
    background: #dc0028;
    width: 0%;
    transition: width 0.3s ease;
}
#progressText {
    text-align: center;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}
#progressText .dots {
    display: inline-block;
    width: 30px;
    text-align: left;
}
#lowPerfMsg {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    z-index: 1000000;
    opacity: 0;
    animation: showAfterDelay 0.5s ease-in 10s forwards;
}
@keyframes showAfterDelay {
    to { opacity: 1; }
}
#lowPerfMsg a {
    color: #dc0028;
}
body.globe-loaded #lowPerfMsg {
    display: none !important;
}
body.globe-loaded #earlyLoader {
    display: none !important;
}
