body {
    background-image: url('../images/Opendo_Toolbox_1080p_square.jpg');
    background-size: cover; /* S'assure que l'image couvre tout l'élément */
    background-position: center; /* Centre l'image dans l'élément */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
    margin: 0; /* Supprime la marge par défaut */
    padding: 0; /* Supprime le padding par défaut */
}

.loading-container {
    position: fixed; /* Ou 'absolute' selon votre layout */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#launchButton {
    background-color: #EE316B;
    color: white;
    border-radius: 30px;
    padding: 12px 60px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.25s;
}

#launchButton:hover {
    background-color: #333333;
}

.blur-background {
    -webkit-backdrop-filter: blur(30px); /* Préfixe pour Safari */
    backdrop-filter: blur(30px); 
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 60px;
    display: inline-block; /* Nécessaire pour que le conteneur s'adapte à la taille du bouton */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.16);
}

.blur-text {
    color: #333333;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.blur-text-beta {
    color: #333333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 60px;
}

.picto {
    max-width: 80px;
    margin-bottom: 40px;
    display: block; /* Pour centrer l'image dans le conteneur */
    margin-left: auto;
    margin-right: auto;
}

#loader-wrapper {
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    background: #FFFFFF;
    padding: 2px;
    text-align: center;
    z-index: 1001;
    display: none;
    border-radius: 20px;
}

#loader {
    height: 8px;
    width: 0%;
    border-radius: 20px;
    background-color: #38D7E7;
    transition: width 0.25s;
}

#container {
    z-index: 1;
}

#gimick {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    text-align: center;
}

#gimick img {
    margin-bottom: 20px;
}

#gimick p {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 60px;
}

#cancelButton {
    background-color: #333;
    color: white;
    border-radius: 30px;
    padding: 12px 60px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.25s;
}

#cancelButton:hover {
    background-color: #38D7E7;
}
