#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fe0000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    transition: opacity 0.5s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 90%;
}

.loader-logo {
    width: 320px;
    max-width: 80vw;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    margin-bottom: 10px;
}

.loader-bar-outer {
    width: 280px;
    max-width: 70vw;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#visible-loading-bar-fill {
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

#visible-loading-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: monospace;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

#loading-details code {
    background: rgba(255,255,255,0.08);
    padding: 3px 6px;
    border-radius: 4px;
    color: #fff;
    font-family: monospace;
}
