/* Style pour l'écran de chargement */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #661e5b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.99;
    z-index: 9999;
    transition: opacity 0.5s;
}

.sneakpeek {
    position: absolute;
    top: 40px;
    align-items: center;
}

/* Style pour le conteneur de la barre de progression */
.progress-container {
    width: 60%;
    max-width: 500px;
    background-color: #5c1653;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

/* Style pour la barre de progression */
.progress-bar {
    height: 20px;
    width: 0%;
    background-color: #d4e442;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Style pour le texte de pourcentage */
.progress-text {
    margin-top: 10px;
    font-size: 16px;
    color: #dbd793;
}

/* Style pour le contenu principal du site */
#content {
    padding: 50px;
    text-align: center;
    display: none;
}