#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #1A1C20;
    display: none;
    justify-content: center;
    align-items: center;
}

.progress-container {
    width: 80%;
    background-color: #f3f3f3;
    border-radius: 25px;
    overflow: hidden;
    transition: 2s ease-in-out;
}

.hidden {
    opacity: 0;
}

.progress-bar {
    width: 0;
    height: 30px;
    background-color: #F0A500;
    border-radius: 25px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}