


.popup-screen{
  z-index: 999999;
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: 0.5s ease;
  transition-property: visibility;

}

.popup-screen.active{
  visibility: visible;
}

.popup-box{
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  width: 740px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 10px 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  transform: scale(0);
  transition: 0.5s ease;
  transition-property: transform;
  background: 
  url('../img/popup/popup.webp'),
  linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
  background-size: 100%;
  background-position: bottom;


  

}









.element1 {
  position: absolute;
  width: 6%;
  z-index: 9;
  left: 5%;
  top: 85%;
  }

  






.popup-content {

position: relative;
display: flex;
text-align: center;
flex-direction: column;
justify-content: center; /* Centers content vertically */
align-items: center; /* Centers content horizontally */
width: 60%;
height: 480px;
margin-left: 0;
margin-right: auto;
z-index: 10;
}


.hand {
  display: block;
  position: relative;
  width: 40%;
  height: 480px;
  position: relative;
  background-image: url(../img/popup/hand.webp);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}






.popup-screen.active .popup-box{
  transform: scale(1);
}

.popup-title{
  position: relative;
  font-family: 'ttrunstrialmedium';
  font-size: 34px;
  font-weight: 800;
  color: #191919;
  text-align: center;
  line-height: 39px;

}


.popup-money{
  position: relative;
  font-family: 'ttrunstrialextrabold';
  font-size: 74px;
  font-weight: 800;
  color: #fd42ff;
  text-align: center;
  
  

}

.popup-box p{
  font-family: 'ttrunstrialmedium';
  text-align: center;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #191919;
}

.popup-box .btn{
 
  outline: none;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 26px;
  font-weight: 400;
  background: #fd42ff;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
  width: 330px;
  font-family: 'ttrunstrialmedium';
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.popup-box .btn:hover {
  
  background-color: #191919;
  color: #fd42ff;
}


.close-btn{
  position: absolute;
  font-size: 1.3em;
  top: 0;
  right: 0;
  margin: 15px;
  color: #191919;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
  transition-property: opacity;
}

.close-btn:hover{
  opacity: 1;
}




@media (max-width: 1388px) {

 /* --- Popup --- */

 .popup-box{
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  width: 740px;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  transform: scale(0);
  transition: 0.5s ease;
  transition-property: transform;
  background: 
  url('../img/popup/popup.webp'),
  linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
  background-size: cover;
  background-position: bottom;


  

}









.element1 {
  position: absolute;
  width: 6%;
  z-index: 9;
  left: 5%;
  top: 85%;
  }

  






.popup-content {

position: relative;
display: flex;
text-align: center;
justify-content: center; /* Centers content vertically */
align-items: center; /* Centers content horizontally */
width: 60%;
height: 480px;
margin-left: 0;
margin-right: auto;
z-index: 10;
}


.hand {
  display: block;
  width: 40%;
  position: absolute;
  right: 0;
  background-image: url(../img/popup/hand.webp);
  height: 480px;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}






.popup-screen.active .popup-box{
  transform: scale(1);
}

.popup-title{
  position: relative;
  font-family: 'ttrunstrialmedium';
  font-size: 34px;
  font-weight: 800;
  color: #191919;
  text-align: center;
  line-height: 39px;
  margin-top: -30px;
  margin-bottom: 0px;

}


.popup-money{
  position: relative;
  font-family: 'ttrunstrialextrabold';
  font-size: 74px;
  font-weight: 800;
  color: #fd42ff;
  text-align: center;
  margin-bottom: 0px;
  
  

}

.popup-box p{
  font-family: 'ttrunstrialmedium';
  text-align: center;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 15px;
  color: #191919;
  
}

.popup-box .btn{
 
  outline: none;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 26px;
  font-weight: 400;
  background: #fd42ff;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
  width: 330px;
  font-family: 'ttrunstrialmedium';
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.popup-box .btn:hover {
  
  background-color: #191919;
  color: #fd42ff;
}


.close-btn{
  position: absolute;
  font-size: 1.3em;
  top: 0;
  right: 0;
  margin: 15px;
  color: #191919;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
  transition-property: opacity;
  z-index: 10000;
}

.close-btn:hover{
  opacity: 1;
}




}



@media (max-width: 1080px) {

  /* --- Popup --- */
 
  .popup-box{
   position: relative;
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   width: 600px;
   height: 400px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin: 20px;
   padding: 10px 30px;
   border-radius: 20px;
   box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
   transform: scale(0);
   transition: 0.5s ease;
   transition-property: transform;
   background: 
   url('../img/popup/popup.webp'),
   linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
   background-size: cover;
   background-position: bottom;
 
 
   
 
 }
 
 
 
 
 
 
 
 
 
 .element1 {
   position: absolute;
   width: 6%;
   z-index: 9;
   left: 5%;
   top: 85%;
   }
 
   
 
 
 
 
 
 
 .popup-content {
 
 position: relative;
 display: flex;
 text-align: center;
 justify-content: center; /* Centers content vertically */
 align-items: center; /* Centers content horizontally */
 width: 60%;
 height: 480px;
 margin-left: 0;
 margin-right: auto;
 z-index: 10;
 }
 
 
 .hand {
   display: block;
   width: 40%;
   position: absolute;
   right: 0;
   background-image: url(../img/popup/hand.webp);
   height: 480px;
   background-size: 80%;
   background-repeat: no-repeat;
   background-position: center;
 }
 
 
 
 
 
 
 .popup-screen.active .popup-box{
   transform: scale(1);
 }
 
 .popup-title{
   position: relative;
   font-family: 'ttrunstrialmedium';
   font-size: 30px;
   font-weight: 800;
   color: #191919;
   text-align: center;
   line-height: 39px;
   margin-top: -30px;
   margin-bottom: 0px;
 
 }
 
 
 .popup-money{
   position: relative;
   font-family: 'ttrunstrialextrabold';
   font-size: 60px;
   font-weight: 800;
   color: #fd42ff;
   text-align: center;
   margin-bottom: 0px;
   
   
 
 }
 
 .popup-box p{
   font-family: 'ttrunstrialmedium';
   text-align: center;
   font-size: 30px;
   line-height: 30px;
   margin-bottom: 15px;
   color: #191919;
   
 }
 
 .popup-box .btn{
  
   outline: none;
   padding: 10px 20px;
   border-radius: 14px;
   font-size: 23px;
   font-weight: 400;
   background: #fd42ff;
   color: #fff;
   cursor: pointer;
   border: 2px solid transparent;
   transition: all 0.4s ease;
   text-align: center;
   width: 280px;
   font-family: 'ttrunstrialmedium';
   display: block;
   margin-left: auto;
   margin-right: auto;
 }
 
 .popup-box .btn:hover {
   
   background-color: #191919;
   color: #fd42ff;
 }
 
 
 .close-btn{
   position: absolute;
   font-size: 1.3em;
   top: 0;
   right: 0;
   margin: 15px;
   color: #191919;
   cursor: pointer;
   opacity: 0.5;
   transition: 0.3s ease;
   transition-property: opacity;
   z-index: 100000;
 }
 
 .close-btn:hover{
   opacity: 1;
 }
 
 
 
 
 }






 @media (max-width: 780px) {

  /* --- Popup --- */
 
  .popup-box{
   position: relative;
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   width: 520px;
   height: 340px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin: 20px;
   padding: 10px 30px;
   border-radius: 20px;
   box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
   transform: scale(0);
   transition: 0.5s ease;
   transition-property: transform;
   background: 
   url('../img/popup/popup.webp'),
   linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
   background-size: cover;
   background-position: bottom;
 
 
   
 
 }
 
 
 
 
 
 
 
 
 
 .element1 {
   position: absolute;
   width: 6%;
   z-index: 9;
   left: 5%;
   top: 85%;
   }
 
   
 
 
 
 
 
 
 .popup-content {
 
 position: relative;
 display: flex;
 text-align: center;
 justify-content: center; /* Centers content vertically */
 align-items: center; /* Centers content horizontally */
 width: 60%;
 height: 480px;
 margin-left: 0;
 margin-right: auto;
 z-index: 10;
 }
 
 
 .hand {
   display: block;
   width: 40%;
   position: absolute;
   right: 0;
   background-image: url(../img/popup/hand.webp);
   height: 480px;
   background-size: 80%;
   background-repeat: no-repeat;
   background-position: center;
   z-index: 10;
 }
 
 
 
 
 
 
 .popup-screen.active .popup-box{
   transform: scale(1);
 }
 
 .popup-title{
   position: relative;
   font-family: 'ttrunstrialmedium';
   font-size: 27px;
   font-weight: 800;
   color: #191919;
   text-align: center;
   line-height: normal;
   margin-top: -30px;
   margin-bottom: 0px;
 
 }
 
 
 .popup-money{
   position: relative;
   font-family: 'ttrunstrialextrabold';
   font-size: 50px;
   font-weight: 800;
   color: #fd42ff;
   text-align: center;
   margin-bottom: 0px;
   
   
 
 }
 
 .popup-box p{
   font-family: 'ttrunstrialmedium';
   text-align: center;
   font-size: 27px;
   line-height: 28px;
   margin-bottom: 10px;
   color: #191919;
   
 }
 
 .popup-box .btn{
  
   outline: none;
   padding: 10px 20px;
   border-radius: 14px;
   font-size: 20px;
   font-weight: 400;
   background: #fd42ff;
   color: #fff;
   cursor: pointer;
   border: 2px solid transparent;
   transition: all 0.4s ease;
   text-align: center;
   width: 250px;
   font-family: 'ttrunstrialmedium';
   display: block;
   margin-left: auto;
   margin-right: auto;
 }
 
 .popup-box .btn:hover {
   
   background-color: #191919;
   color: #fd42ff;
 }
 
 
 .close-btn{
   position: absolute;
   font-size: 1.3em;
   top: 0;
   right: 0;
   margin: 15px;
   color: #191919;
   cursor: pointer;
   opacity: 0.5;
   transition: 0.3s ease;
   transition-property: opacity;
   z-index: 1000;
 }
 
 .close-btn:hover{
   opacity: 1;
 }
 
 
 
 
 }














@media (max-width: 580px) {



  /* --- Popup --- */

.popup-box{
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  width: 380px ;
  height: 250px;
  display: flex;
  top: -10%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  transform: scale(0);
  transition: 0.5s ease;
  transition-property: transform;
  background: 
  url('../img/popup/popup.webp'),
  linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
  background-size: cover;
  background-position: bottom;


  

}









.element1 {
  position: absolute;
  width: 6%;
  z-index: 9;
  left: 5%;
  top: 85%;
  }

  






.popup-content {

position: relative;
display: flex;
text-align: center;
justify-content: center; /* Centers content vertically */
align-items: center; /* Centers content horizontally */
width: 60%;
height: 480px;
margin-left: 0;
margin-right: auto;
z-index: 10;
}


.hand {
  display: block;
  width: 40%;
  position: absolute;
  right: 0;
  background-image: url(../img/popup/hand.webp);
  height: 170px;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}






.popup-screen.active .popup-box{
  transform: scale(1);
}

.popup-title{
  position: relative;
  font-family: 'ttrunstrialmedium';
  font-size: 16px;
  color: #191919;
  text-align: center;
  line-height: 16px;
  margin-top: -20px;
  margin-bottom: -3px;

}


.popup-money{
  position: relative;
  font-family: 'ttrunstrialextrabold';
  font-size: 32px;
  color: #fd42ff;
  text-align: center;
  margin-bottom: -3px;
  
  

}

.popup-box p{
  font-family: 'ttrunstrialmedium';
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 10px;
  color: #191919;
}

.popup-box .btn{
 
  outline: none;
  padding: 3px 4px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  background: #fd42ff;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
  width: 180px;
  font-family: 'ttrunstrialmedium';
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.popup-box .btn:hover {
  
  background-color: #191919;
  color: #fd42ff;
}


.close-btn{
  position: absolute;
  font-size: 1.3em;
  top: 0;
  right: 0;
  margin: 15px;
  color: #191919;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
  transition-property: opacity;
}

.close-btn:hover{
  opacity: 1;
}



}




@media (max-width: 425px) {


/* --- Popup --- */

.popup-box{
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  width: 380px ;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  transform: scale(0);
  transition: 0.5s ease;
  transition-property: transform;
  background: 
  url('../img/popup/popup.webp'),
  linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
  background-size: cover;
  background-position: bottom;


  

}

}



@media (max-width: 380px) { 

  /* --- Popup --- */

.popup-box{
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  width: 340px ;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  padding: 10px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  transform: scale(0);
  transition: 0.5s ease;
  transition-property: transform;
  background: 
  url('../img/popup/popup.webp'),
  linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
  background-size: cover;
  background-position: bottom;


  

}









.element1 {
  position: absolute;
  width: 6%;
  z-index: 9;
  left: 5%;
  top: 85%;
  }

  






.popup-content {

position: relative;
display: flex;
text-align: center;
justify-content: center; /* Centers content vertically */
align-items: center; /* Centers content horizontally */
width: 60%;
height: 240px;
margin-left: 0;
margin-right: auto;
z-index: 10;
}


.hand {
  display: block;
  width: 40%;
  position: absolute;
  right: 0;
  background-image: url(../img/popup/hand.webp);
  height: 170px;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}






.popup-screen.active .popup-box{
  transform: scale(1);
}

.popup-title{
  position: relative;
  font-family: 'ttrunstrialmedium';
  font-size: 15px;
  color: #191919;
  text-align: center;
  line-height: 16px;
  margin-top: -20px;
  margin-bottom: -3px;

}


.popup-money{
  position: relative;
  font-family: 'ttrunstrialextrabold';
  font-size: 30px;
  color: #fd42ff;
  text-align: center;
  margin-bottom: -3px;
  
  

}

.popup-box p{
  font-family: 'ttrunstrialmedium';
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 7px;
  color: #191919;
}

.popup-box .btn{
 
  outline: none;
  padding: 3px 4px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  background: #fd42ff;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  text-align: center;
  width: 150px;
  font-family: 'ttrunstrialmedium';
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.popup-box .btn:hover {
  
  background-color: #191919;
  color: #fd42ff;
}


.close-btn{
  position: absolute;
  font-size: 1.3em;
  top: 0;
  right: 0;
  margin: 15px;
  color: #191919;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
  transition-property: opacity;
}

.close-btn:hover{
  opacity: 1;
}

  }




@media (max-width: 360px) { 
  .popup-box{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 320px ;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    padding: 10px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    transform: scale(0);
    transition: 0.5s ease;
    transition-property: transform;
    background: 
    url('../img/popup/popup.webp'),
    linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
    background-size: cover;
    background-position: bottom;

}
}





