/*Couleurs*/
/* Vert : #BFECB8
   Bleu : #183DD0
   Orange : #F29100
   Violet : purple
*/

/* Partie page Règle et touches */
/*Partie touches*/
body {
    margin: 0;
    background-color: #293133;
    text-align: center;
    color: white;
    font-family: "Kanit Medium";
    width: 100vw; /* 100% de la largeur de la fenêtre */
    height: 100vh; /* 100% de la hauteur de la fenêtre */
    display: flex;
    justify-content: center; /* Centrer horizontalement */
    align-items: center; /* Centrer verticalement */
}


.soon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    font-size: 50px;
    color: #70E000;
}

.soon-attente{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40vh;
    font-size: 50px;
    color: #70E000;
}

.attente-p{
    font-size: 20px;
}


#ranking-board{
    display: flex;
    justify-content: center;
}

.tableau {
    border-collapse: collapse;
    font-size: 14px;
    color: white;
    transform: scale(1.2);
}

.tableau th,
.tableau td {
    padding: 10px;
    text-align: center;
    border: 2px solid #ccc;
}

.tableau th {
    background-color: #5b5b5b;
    font-weight: inherit;
    font-size: 20px;
    color: #ececec;

}

.tableau tbody tr:nth-child(2n) {
    background-color: #1a1e24;
    opacity: 80;
    color: #fff;
}

#control{
    display: flex;
    justify-content: flex-start;
    color: white;
}

#pseudo{
    background-color: #a9a9a9;
}

#rank{
    background-color: #a9a9a9;
}

#nb-points{
    background-color: #a9a9a9;
}

#level-green-success{
    background-color: #70E000;
}

#level-blue-success{
    background-color: #2196f3;
}

#level-orange-success{
    background-color: #ff8800;
}

#level-purple-success{
    background-color: #B75AED;
}

#top-rank{
    /*background-color: #B75AED;*/
}

.bouton-ranking{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}


/*Partie page Accueil*/
#accueil {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*background: #293133;*/
    background-image: url("../images/background/accueil-bomber-slime.png");
    background-repeat: no-repeat;
    background-size: cover;
}

a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #B75AED;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 24px;
    overflow: hidden;
    transition: 0.2s;
}



a:hover {
    color: #255784;
    background: #B75AED;
    box-shadow: 0 0 10px #B75AED, 0 0 40px #B75AED, 0 0 80px #B75AED;
    transition-delay: 1s;
}


a span {
    position: absolute;
    display: block;
}




a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B75AED);
}



a:hover span:nth-child(1) {
    left: 100%;
    transition: 1s;
}


a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #B75AED);
}

a:hover span:nth-child(3) {
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
}

a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #B75AED);
}

a:hover span:nth-child(2) {
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
}



a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #B75AED);
}

a:hover span:nth-child(4) {
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
}

.nav{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    padding-bottom: 0;
    position: absolute;
    top:80% ;


}

.button-skin{
    background-color: #70E000;
    color: #fff;
    align-self: center;
    margin: 0;
    padding: 0;
    padding: 20px;
    border-width: 0px;
    border-radius: 10px;
    font-size: 25px;
    font-family: "Kanit SemiBold",sans-serif;
    transition: background-color 0.3s ease-in-out; /* Propriété à animer avec la durée et le timing de la transition */
}

#button-skin:hover{
    background-color: #fff;
    color: #70E000;
}


/* Partie Page Skins */
.skin-list{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.skin{
    font-weight: bold;
    font-size: 20px;
    background-color: #2196f3;
    margin: 30px;
    width: 150px;
    text-align: center;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
    /*width: calc(20% - 10px);*/
}

.skin:hover{
    box-shadow: 2px 2px 2px rgb(150, 150, 150);

}

.skin.violet{
    background-color: #1a1e24;
    border-color:#2196f3;
    border-style: solid;
    border-width: 5px;
    color: #2196f3;
}


/*Les boutons */
/* Boutons Vert */
.button-green{
    font-family: "Kanit SemiBold", sans-serif;
    padding: 15px 30px;
    font-size: 24px;
    color: #70E000;
    border-style: solid;
    border-width: 2px;
    border-color: #70E000;
    background-color: #293133;
    /*transition: background-color 0.7s ease-in-out;*/
    animation-delay: 3s;
    transition: box-shadow 0.4s ease-out;


}


.button-green:hover{
    background-color: #70E000;
    box-shadow: 0 0 10px #70E000, 0 0 40px #70E000, 0 0 80px #70E000;
    color: #293133;
}
/* Fin boutons vert */

/* Boutons Bleu */
.button-blue{
    font-family: "Kanit SemiBold", sans-serif;
    padding: 15px 30px;
    font-size: 24px;
    color: #2196f3;
    border-style: solid;
    border-width: 2px;
    border-color: #2196f3;
    background-color: #293133;
    animation-delay: 3s;
    transition: box-shadow 0.4s ease-out;
}


.button-blue:hover{
    background-color: #2196f3;
    box-shadow: 0 0 10px #2196f3, 0 0 40px #2196f3, 0 0 80px #2196f3;
    color: #293133;
}
/*Fin boutons bleu*/

/* Boutons Orange */
.button-orange{
    font-family: "Kanit SemiBold", sans-serif;
    padding: 15px 30px;
    font-size: 24px;
    color: #ff8800;
    border-style: solid;
    border-width: 2px;
    border-color: #ff8800;
    background-color: #293133;
    animation-delay: 3s;
    transition: box-shadow 0.4s ease-out;
}


.button-orange:hover{
    background-color: #ff8800;
    box-shadow: 0 0 10px #ff8800, 0 0 40px #ff8800, 0 0 80px #ff8800;
    color: #293133;
}
/* Fin boutons orange */

/* Boutons violet */
.button-purple{
    font-family: "Kanit SemiBold", sans-serif;
    padding: 15px 30px;
    font-size: 24px;
    color: #B75AED;
    border-style: solid;
    border-width: 2px;
    border-color: #B75AED;
    background-color: #293133;
    animation-delay: 3s;
    transition: box-shadow 0.4s ease-out;
}


.button-purple:hover{
    background-color: #B75AED;
    box-shadow: 0 0 10px #B75AED, 0 0 40px #B75AED, 0 0 80px #B75AED;
    color: #293133;
}
/* Fin boutons violet */


/* Partie page Settings */
#key-board{
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

#control-settings{
    display: flex;
    justify-content: center;
    color: white;
    padding-top: 50px;
}



/*body{*/
/*    margin: 0;*/
/*    background-color: #293133;*/
/*    text-align: center;*/
/*    color: white;*/
/*    font-family: "Kanit Medium";*/
/*}*/

/*!*Switch CSS Bouton Violet*!*/
/*.switch{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-around;*/
/*}*/


/*.toggle-purple{*/
/*    position: relative;*/
/*    height: 70px;*/
/*    width: 70px;*/
/*    background-color: white;*/
/*    transform: rotate(-45deg);*/
/*    border-bottom-left-radius: 100px;*/
/*    box-shadow: 0 0 8px rgba(0,0,0,0.15);*/
/*    cursor: pointer;*/
/*}*/

/*.toggle-purple::before,*/
/*.toggle-purple::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    width:100%;*/
/*    border-radius: 50px;*/
/*    background-color: white;*/
/*}*/

/*.toggle-purple::before{*/
/*    top: -50%;*/
/*    left: 0;*/
/*}*/

/*.toggle-purple::after{*/
/*right: -50%;*/
/*top: 0;*/
/*}*/

/*.toggle-purple, .toggle-purple::before, .toggle-purple::after{*/
/*    transition: all 0.6s ;*/
/*    transition-delay: 0.3s;*/
/*}*/

/*.toggle-purple.forward, .toggle-purple.forward::before, .toggle-purple.forward::after{*/
/*    background-color: #B75AED;*/
/*}*/

/*.circle{*/
/*    position: absolute;*/
/*    left: 7px;*/
/*    top: -28px;*/
/*    height: 55px;*/
/*    width: 55px;*/
/*    background-color: #ffffff;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,0.15);*/
/*    z-index: 100;*/
/*}*/

/*.toggle-purple.forward .circle{*/
/*    animation: front 0.6s linear forwards;*/
/*}*/
/*@keyframes front {*/
/*    0%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/
/*}*/

/*.toggle-purple.reverse .circle{*/
/*    animation: back 0.6s linear forwards;*/
/*}*/
/*@keyframes back {*/
/*    0%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/
/*}*/
/*!*Fin Switch Bouton Violet Css*!*/

/*!*Switch CSS Bouton Vert*!*/

/*.toggle-green{*/
/*    position: relative;*/
/*    height: 70px;*/
/*    width: 70px;*/
/*    background-color: white;*/
/*    transform: rotate(-45deg);*/
/*    border-bottom-left-radius: 100px;*/
/*    box-shadow: 0 0 8px rgba(0,0,0,0.15);*/
/*    cursor: pointer;*/
/*}*/

/*.toggle-green::before,*/
/*.toggle-green::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    width:100%;*/
/*    border-radius: 50px;*/
/*    background-color: white;*/
/*}*/

/*.toggle-green::before{*/
/*    top: -50%;*/
/*    left: 0;*/
/*}*/

/*.toggle-green::after{*/
/*    right: -50%;*/
/*    top: 0;*/
/*}*/

/*.toggle-green, .toggle-green::before, .toggle-green::after{*/
/*    transition: all 0.6s ;*/
/*    transition-delay: 0.3s;*/
/*}*/

/*.toggle-green.forward, .toggle-green.forward::before, .toggle-green.forward::after{*/
/*    background-color: #70e000;*/
/*}*/

/*.circle{*/
/*    position: absolute;*/
/*    left: 7px;*/
/*    top: -28px;*/
/*    height: 55px;*/
/*    width: 55px;*/
/*    background-color: #ffffff;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,0.15);*/
/*    z-index: 100;*/
/*}*/

/*.toggle-green.forward .circle{*/
/*    animation: front 0.6s linear forwards;*/
/*}*/
/*@keyframes front {*/
/*    0%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/
/*}*/

/*.toggle-green.reverse .circle{*/
/*    animation: back 0.6s linear forwards;*/
/*}*/
/*@keyframes back {*/
/*    0%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/
/*}*/

/*!*Fin Switch Bouton Vert Css*!*/


/*!*Switch CSS Bouton Orange*!*/

/*.toggle-orange{*/
/*    position: relative;*/
/*    height: 70px;*/
/*    width: 70px;*/
/*    background-color: white;*/
/*    transform: rotate(-45deg);*/
/*    border-bottom-left-radius: 100px;*/
/*    box-shadow: 0 0 8px rgba(0,0,0,0.15);*/
/*    cursor: pointer;*/
/*}*/

/*.toggle-orange::before,*/
/*.toggle-orange::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    width:100%;*/
/*    border-radius: 50px;*/
/*    background-color: white;*/
/*}*/

/*.toggle-orange::before{*/
/*    top: -50%;*/
/*    left: 0;*/
/*}*/

/*.toggle-orange::after{*/
/*    right: -50%;*/
/*    top: 0;*/
/*}*/

/*.toggle-orange, .toggle-orange::before, .toggle-orange::after{*/
/*    transition: all 0.6s ;*/
/*    transition-delay: 0.3s;*/
/*}*/

/*.toggle-orange.forward, .toggle-orange.forward::before, .toggle-orange.forward::after{*/
/*    background-color: #ff8800;*/
/*}*/

/*.circle{*/
/*    position: absolute;*/
/*    left: 7px;*/
/*    top: -28px;*/
/*    height: 55px;*/
/*    width: 55px;*/
/*    background-color: #ffffff;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,0.15);*/
/*    z-index: 100;*/
/*}*/

/*.toggle-orange.forward .circle{*/
/*    animation: front 0.6s linear forwards;*/
/*}*/
/*@keyframes front {*/
/*    0%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/
/*}*/

/*.toggle-orange.reverse .circle{*/
/*    animation: back 0.6s linear forwards;*/
/*}*/
/*@keyframes back {*/
/*    0%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/
/*}*/

/*!*Fin Switch Bouton Orange Css*!*/


/*!*Switch CSS Bouton Bleu*!*/

/*.toggle-blue{*/
/*    position: relative;*/
/*    height: 70px;*/
/*    width: 70px;*/
/*    background-color: white;*/
/*    transform: rotate(-45deg);*/
/*    border-bottom-left-radius: 100px;*/
/*    box-shadow: 0 0 8px rgba(0,0,0,0.15);*/
/*    cursor: pointer;*/
/*}*/

/*.toggle-blue::before,*/
/*.toggle-blue::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    width:100%;*/
/*    border-radius: 50px;*/
/*    background-color: white;*/
/*}*/

/*.toggle-blue::before{*/
/*    top: -50%;*/
/*    left: 0;*/
/*}*/

/*.toggle-blue::after{*/
/*    right: -50%;*/
/*    top: 0;*/
/*}*/

/*.toggle-blue, .toggle-blue::before, .toggle-blue::after{*/
/*    transition: all 0.6s ;*/
/*    transition-delay: 0.3s;*/
/*}*/

/*.toggle-blue.forward, .toggle-blue.forward::before, .toggle-blue.forward::after{*/
/*    background-color: #00b4d8;*/
/*}*/

/*.circle{*/
/*    position: absolute;*/
/*    left: 7px;*/
/*    top: -28px;*/
/*    height: 55px;*/
/*    width: 55px;*/
/*    background-color: #ffffff;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,0.15);*/
/*    z-index: 100;*/
/*}*/

/*.toggle-blue.forward .circle{*/
/*    animation: front 0.6s linear forwards;*/
/*}*/
/*@keyframes front {*/
/*    0%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/
/*}*/

/*.toggle-blue.reverse .circle{*/
/*    animation: back 0.6s linear forwards;*/
/*}*/
/*@keyframes back {*/
/*    0%{*/
/*        left: 42px;*/
/*        top: 7px;*/
/*    }*/

/*    50%{*/
/*        top: -1px;*/
/*        left: 17px;*/
/*    }*/

/*    100%{*/
/*        left: 7px;*/
/*        top: -28px;*/
/*    }*/
/*}*/

/*!*Fin Switch Bouton Bleu Css*!*/










