@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Gothic+A1&family=Italianno&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body{
    background-color: #101820;
}
*{
    margin: 0;
    padding: 0;
    transition: all 0.4s ease-in-out;
    font-family: "Poppins", serif;
}
header{
    width: 100dvw;
    height: 100vh;
    display: flex;
    align-items: end;
    justify-content: center;
}
nav{
    position: fixed;
    top: 0;
    height: 64px;
    width: 80%;
    padding: 0 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.logo{
    font-family: "Gloria Hallelujah", serif;
    font-size: 25px;
    font-weight: 800;
    color: #fee715;
    cursor: pointer;
}
.logo img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
button{
    height: 48px;
    border: none;
    border-radius: 8px;
    outline: none;
    padding: 0 30px;
    font-size: 14px;
    color: #9b8d0c;
    background: #030404;
    cursor: pointer;
}


.flag{
    width: 18px;
    height: 14px;
    object-fit: contain; cursor: pointer;
}
.flags{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #030404;
    padding: 8px;
    gap: 16px;
    position: absolute;
    top: 0;right: 10px;
    animation: 0.0s items1Hide ease-in-out forwards;
}
.btnflag{
    background-color: #03040422;
    padding: 8px;
    display: flex;
    align-items: center;justify-content: center;
    cursor: pointer;
}
.btnflag svg{
    width: 14px;
    height: 14px;
    fill: #030404;
}
.home{
    width: 75%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.left{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.right{
    width: 40%;
}
.right img{
    width: 80%;
    height: auto;
    object-fit: contain;
    /* ajouter une animation infini de haut à bas ainsi de suite */
    animation: move 3s linear infinite;
    animation-direction: alternate;
    margin: 15px 0;
}
.animateBool{
    width: 50px;
    height: 50px;
    position: absolute;
    top: -50px;
    left: 0;
    z-index: -1;
    content: '';
    border-radius: 50%;
    background: linear-gradient(#fee715, #9b8d0c);
    animation: move 3s linear infinite;
    animation-direction: alternate;
}

@keyframes move {
    0%, 100% {
        transform: translateX(20px);
    }
    50% {
        transform: translateX(-20px);
    }
}

.left{
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.ptitText{
    font-size: 12px;
    color: #eef1f4;
    margin-bottom: -30px;
    animation: 1s moveTilte ease;
    animation-direction: alternate;
}
.left h1{
    font-size: 68px;
    font-family: "Poppins", serif;
    color: #eef1f4;
    animation: 1s moveTilte ease;
}

@keyframes moveTilte {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px);
        opacity: 0.5;
    }
}
.left p{
    font-size: 16px;
    font-family:  "Poppins", serif;
    color: #eef1f4cc;
    animation: 1s moveText ease;
    width: 70%;
}
@keyframes moveText {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0.5;
    }
}
 .btnHeader{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
 .DD{
    animation: 1s moveBtn ease;
}
@keyframes moveBtn {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-30px);
        opacity: 0.5;
    }
}
 .dd{
    background: #fee71522!important;
    color: #eef1f4;
    animation: 1s moveBtn2 ease;
}
@keyframes moveBtn2 {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(30px);
        opacity: 0.5;
    }
}
.container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
h1{
    font-size: 72px;
    font-family: "Poppins", serif;
    color: #eef1f4;
}
h1 span{
    color: #fee715;
}
h2 span{
    color: #9b8d0c;
}
h2{
    font-size: 40px;
    font-family: "Poppins", serif;
    color: #eef1f4;
}
.timer{
    color: #03040422;
    font-size: 64px;
}
.note{
    position: relative;
}
.note::after{
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 10px;
    border-radius: 50%;
    border-top: 2px solid #9b8d0c;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}


.form{
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: start;
    justify-content: center;

}
.form form{
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
form button img{
    width: auto;
    height: 24px;
}
.lign{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.ligne{
    height: 4px;
    min-width: 5px;
    background-color: #fee71555;
    border-radius: 2px;
}
.ligne:first-child{
    background: #fee715;
}
.etape{
    font-size: 30px;
    color: #eef1f4bb;
    font-weight: 800;

}
.form h1{
    font-size: 40px;
    color: #eef1f4;
    margin: 0;padding: 0;
    text-align: center;
    margin-top: 100px;
}
.form span{
    font-size: 14px;
    color: #eef1f4cc;
    margin-top: -5px;
    margin-bottom: 20px;
}
.champ{
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.radios .input:first-child{
    margin-top: 0!important;
}

.radio{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px;
}
.radio .input:first-child{
    margin-top: 0!important;
}
.radios{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 32Px;
}
.input .fgg{

    height: 100%;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(#101820, #101820) padding-box, linear-gradient(45deg, #fee715,#9b8d0c) border-box;
    color: #eef1f4cc;
    font-family: 14px;
    max-width: 95%!important;
    width: 100%!important;
    left: 0%!important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.input .fgg span{
    margin: 0!important;
}
.btns{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    margin-top: 10px;
}
.btns svg{
    width: 16px;
    height: 16px;
    fill: #04101E;
}
.btns button{
    width: auto!important;
    background: linear-gradient(to right,#fee715, #9b8d0c);
}
.btns button:first-child{
    background: none;
    color: #030404;
    border: 2px solid #fee715;
}

.btns button:first-child svg{
    fill: #fee715;
}
.input label{
    position: absolute;
    left: 5%;
    cursor: text;
    top: 9px;
    background-color: #101820;
    padding: 2px 8px;

}
.input{
    height: 40px;
    width: 100%;
    display: flex;
    position: relative;
}
.input:first-child{
    margin-top: 10px;
}
.input input{
    width: 90%;
    padding: 0 5%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(#101820, #101820) padding-box, linear-gradient(45deg, #fee715,#9b8d0c) border-box;
    color: #eef1f4cc!important;
    font-family: 14px;
}
.input input:hover{
    box-shadow: 0 0 8px #fee715;
}
.input input:focus{
    border: 2px solid transparent;
    outline: none;
    background: linear-gradient(#101820,#101820) padding-box, linear-gradient(125deg, #9b8d0c, #fee715) border-box;
    box-shadow: 0 0 5px #fee715;background: none;
}
.area{
    min-height: 100px!important;
}
.input textarea{
    width: 90%;
    padding: 0 5%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(#101820, #101820) padding-box, linear-gradient(45deg, #fee715,#9b8d0c) border-box;
    color: #030404;
    font-family: 14px;
    resize: none;
}
.input textarea:hover{
    box-shadow: 0 0 8px #fee715;
}
.input textarea:focus{
    border: 2px solid transparent;
    outline: none;
    background: linear-gradient(#101820,#101820) padding-box, linear-gradient(125deg, #9b8d0c, #fee715) border-box;
    box-shadow: 0 0 5px #fee715;background: none;
}
h1 span{
    color: transparent;
    background: linear-gradient(45deg, #9b8d0c, #fee715 40%);
    -webkit-background-clip: text;
    background-clip: text;

}

.input label span{
    font-size: 14px;
    color: #eef1f4aa;
}
.forget{
    color: var(--light);
    font-size: 14px;
    text-align: end;
    width: 100%;
}
.forget:hover{
    color: var(--secondary);
    cursor: pointer;
}
.login{
    background: linear-gradient(45deg, #03040466, #03040466);
    color: #101820!important;
    margin-top: 25px;
    cursor: not-allowed!important;
}
#login{
    background: linear-gradient(45deg, #9b8d0c, #fee715);
    color: #101820!important;
    margin-top: 25px;
    cursor: pointer!important;
}
#login:hover{
    box-shadow: 0 0 10px var(--secVariant);
    background: linear-gradient(45deg, #fee715, #9b8d0c);
}
.form button{
    border: none;
    width: 100%;
    height: 45px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #101820;
    cursor: pointer;
}
.form button:nth-child(9){
    color: var(--light);
    background-color: #030404;
}
.form button:nth-child(10){
    color: var(--light);
    background-color: #3B579D;
}
.form button:nth-child(8):hover{
    box-shadow: 0 0 10px var(--light);
}
.form button:nth-child(9):hover{
    box-shadow: 0 0 10px var(--dark);
}
.form button:nth-child(10):hover{
    box-shadow: 0 0 10px var(--primeVariant);
}


.payement{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 4;
    align-items: center;
    justify-content: center;
}
.verifPayement{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 4;
    align-items: center;
    justify-content: center;
}
.ppp{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 60vh;
    padding: 16px 10px;
    background: #101820;
    border: 2px solid #fee71599;
    border-radius: 16px;
    min-width: 260px;
    justify-content: space-between;
}

.verifPayement .ppp{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 40vh;
    padding: 16px 10px;
    background: #101820;
    border: 2px solid #fee71599;
    border-radius: 16px;
    min-width: 260px;
    justify-content: space-between;
}
.close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.pppp{
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pppp p{
    color: #030404;
    font-size: 16px;
    font-weight: 600;
}
.mont{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
}
.mont p{
    color: #030404aa;
    font-size: 14px;
    font-weight: 400;
}
.mont .p span{
    font-size: 9px;
}
.mont .p{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}


.popup, .popup2{
    width: 350px;
    height: 200px;
    padding: 25px 0;
    border-radius: 24px;
    background-color: #faf8f8;
    position: absolute;
    box-shadow: 0 0 10px #1758A222;
    top: 70px;
    z-index: 5;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    display: none;

}
.popup2{
    width: 300px;
    height: 200px;
    padding: 25px;
}
.popup p, .popup2 p{
    color: #04101Eaa;
    text-align: center;
}
.popup svg, .popup img{
    width: 40px;
    height: 40px;
    padding: 25px;
    border-radius: 50%;
    background-color: #04101E0d;
    fill: #04101E;
}
.popup2 img{
    width: 90px!important;
    height: 90px!important;
    object-fit: contain;
}
.popup2  button{
    border: none;
    outline: none;
    height: 40px;
    padding:  0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1758A2;
    color: #eef1f4;
    border-radius: 8px;
}.popup  button{
    border: none;
    outline: none;
    height: 40px;
    padding:  0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #04101E12;
    color: #04101E;
    border-radius: 8px;
}
.actionPop2{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.actionPop{
    width: 75%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.actionPop2{
    justify-content: end;
}
.popup button:last-child{
    background-color: #04101E;
    color: #f2f4f6;
}





.disabled{
    transform: translateX(100%);
    display: none;
}

.showPt{
    animation: 0.4s show ease-in-out forwards;
  }

  @keyframes show {
    from{
        opacity: 1;
        transform: translateY(50px);
        color: #9b8d0c;
    }
    to{
        opacity: 0;
        transform: translateY(0);
    }
}

.showPt2{
    animation: 0.7s show2 ease-in-out forwards;
  }

  @keyframes show2 {
    from{
        opacity: 1;
        transform: translateY(-50px);
        color: var(--danger);
    }
    to{
        opacity: 0;
        transform: translateY(0);
    }
}
.showWord{
    animation: 0.2s showW ease-in-out forwards;
  }

  @keyframes showW {
    from{
        opacity: 1;
        transform: translateY(-90px);
        color: #9b8d0c;
    }
    to{
        opacity: 0;
        transform: translateY(-60px);
        color: var(--white);
    }
}

.showWord2{
    animation: 0.2s showW2 ease-in-out forwards;
  }

  @keyframes showW2 {
    from{
        opacity: 1;
        transform: translateY(-90px);
        color: var(--danger);
    }
    to{
        opacity: 0;
        transform: translateY(-60px);
        color: var(--white);
    }
}

.move1{
    animation: 2s move1 ease-in-out forwards;
  }

  @keyframes move1 {
    from{
        font-size: 14px;
        transform: translateY(0px);
    }
    to{
        font-size: 12px;
        transform: translateY(50px);
    }
}

.show{
    animation: 0.7s items1SHow ease-in-out forwards;
  }
  .hide{
    animation: 0.0s items1Hide ease-in-out forwards;
  }
  .hideLoader{
    animation: 0.4s items1Hide ease-in-out forwards;
  }
  @keyframes items1SHow {
    from{
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
    to{
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}
@keyframes items1Hide {
    from{
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }
    to{
      opacity: 0;
      transform: translateY(-10px);
      visibility: hidden;
    }
}


@media screen and (max-width: 1310px) {
    .left h1{
        font-size: 60px;
    }
}
@media screen and (max-width: 1160px) {
    .left h1{
        font-size: 55px;
    }
}

@media screen and (max-width: 935px) {
    .left h1{
        font-size: 45px;
    }
}

@media screen and (max-width: 770px) {
    .home{
        position: relative;
        top: 80px!important;
    }
    .left{
        width: 100%!important;
    }
    .right{
        width: 300px!important;
    }
    .left .btnHeader{
        gap: 20px;
    }
}

@media screen and (max-width: 470px) {
    nav{
        width: 92%!important;
    }
    .home{
        width: 92%!important;
    }
    .left h1{
        font-size: 40px;
    }
}

.hideChamps{

}
.showChamps{

}

@keyframes show {
    0%{

    }
}
