*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.wrapper{
  position: relative;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* header{
  height: 10%;
}
main{
  height: 60%;

}
footer{
  height: 10%;
} */


#block_loader{
  /* display: none; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000000;
}

.loader_img_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.loader_img_wrap img{
  width: 50%;
}


#block_mobile{
  position: relative;
  background-size: cover;
    /* Центрирование изображения */
  background-position: center;

    /* Не повторять изображение */
  background-repeat: no-repeat;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../img/photo_2025-08-16_17-19-22.jpg');
/*  width: 390px; */
  width: 100%;
  height: 100vh;
  padding: 20px;
}

.main_menu_wrap{
  height: 100%;
}

.main_menu{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}




header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo_wrap{
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.logo_wrap h3{
  color: #FFFFFF;
  width: 100px;
  overflow-x: hidden;
}

.logo{
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #e29c06, #e29c06);
  padding:2px;
}
.logo img{
  border-radius: 50%;
  width: 100%;
}

.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  margin-right: 20px;
}
.chat_link img{
  margin-right:5px;
}

.telegram_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
}
.telegram_link img{
  margin-right:5px;
}


.main_block_active {
  margin-top: 30px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.active_count {
  width: 48%;
  min-height: 60px;
  border-radius: 8px;
  background-color: #1e1e1e;
  color: #FFFFFF;
  padding: 10px;
  text-align: center;
}
.active_count p{
  font-size: 12px;
  color: #636363;
}
.active_count h1{
  font-size: 16px;
}
.replenish_count {
  width: 48%;
  min-height: 60px;
  border-radius: 8px;
  background: linear-gradient(to right, #c8cb0e, #e29c06);
  color: #FFFFFF;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.replenish_count h1{
  font-size: 16px;
}


.live_transfer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.transfer_live_first {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.circle_live {
  width: 20px;
  height: 20px;
  background-color: #c8cb0e;
  border-radius: 50%;
  margin-right: 10px;
  animation: lighting_live 1.5s infinite ease;
}

@keyframes lighting_live {
  0%{
    opacity: 0;
  }50%{
    opacity: 1;
  }100%{
    opacity: 0;
  }
}


.transfers_wrap{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.transfers_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
.transfers_header_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transfers_header_info h1{
  font-size: 14px;
  color: #FFFFFF;
}
.transfers_header_info p{
  font-size: 12px;
  color: #8a8a8a;
}
.transfers_footer_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.transfers_footer_info p:first-child{
  font-size: 10px;
  color: #c8cb0e;
  font-weight: bold;
}
.transfers_footer_info p:last-child{
  font-size: 12px;
  color: #c8cb0e;
}

footer{
  margin-top: 20px;
  /* position: absolute;
  bottom: 0; */
  width: 100%;
}
.footer_wrap{
  border-radius: 10px;
  background-color: #080810;
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left_footer{
  width: 30%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.right_footer{
  width: 30%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.center_wallet{
  position: absolute;
  top: -30%;
  left: 42%;
  width: 60px;
  height: 60px;
  background-color: #c8cb0e;
  border-radius: 50%;
  box-shadow: 0 0 10px #c8cb0e;
  display: flex;
  align-items: center;
  justify-content: center;
}




.profile_menu_wrap{
  height: 100%;
  display: none;
}

.profile_menu{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info_profile_wrap {
  margin-top: 20px;
  border-radius: 20px;
  border: 3px solid #e29c06;
}
.info_profile {
  padding: 20px;
  border-radius: 18px;
}

.info_profile h1{
  color: #FFFFFF;
  font-size: 14px;
}
#deposit_balance{
  margin-top: 10px;
  font-size: 20px;
}
#deposit_balance_andromeda{
  margin-top: 10px;
  font-size: 20px;
}
#deposit_balance_omega{
  margin-top: 10px;
  font-size: 20px;
}
#deposit_balance_megel{
  margin-top: 10px;
  font-size: 20px;
}
.info_profile p{
  margin: 10px 0;
  font-weight: bold;
  color: #c8cb0e;
  font-size: 14px;
}

.buttons_profile {
  margin-top: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.reinvest_profile_button {
  border-radius: 8px;
  font-weight: bold;
  color: #FFFFFF;
  height: 40px;
  width: 45%;
  border: none;
  background: linear-gradient(to right, #c8cb0e, #c8cb0e);
}
.claim_profile_button {
  border-radius: 8px;
  font-weight: bold;
  color: #FFFFFF;
  height: 40px;
  width: 45%;
  border: none;
  background: linear-gradient(to right, #c8cb0e, #e29c06);
}


.wallet_menu_wrap{
  height: 100%;
  display: none;
}

.wallet_menu{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#wallet_balance{
  margin-top: 10px;
  font-size: 18px;
}


#calc_number{
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  width: 100%;
  outline: none;
  border: 2px solid #c8cb0e;
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: bold;
}
.percent {
  text-align: center;
  font-size: 34px;
  color: #c8cb0e;
  text-shadow: 0 0 10px #c8cb0e;
  margin: 20px 0;
}

.calc_day {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc_week {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc_month {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc_year {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc_day p{
  font-size: 16px;
}
.calc_week p{
  font-size: 16px;
}
.calc_month p{
  font-size: 16px;
}
.calc_year p{
  font-size: 16px;
}



.tasks_menu_wrap{
  height: 100%;
  display: none;
}

.tasks_menu{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tasks{
  height: 100%;
}
.tasks_wrap_block{
  height: 100%;
  overflow-y: scroll;
  padding: 10px;
  overflow-y: scroll;
  margin: 10px 0;
}


.tasks_block_wrap{
  margin: 5px 0;
  padding: 2px;
  border-radius: 15px;
  border: 3px solid #e29c06;
}
.task_block_isp{
  padding: 15px;
  border-radius: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.task_block_info{
  color: #FFFFFF;
}

.task_block_info h3{
  white-space: nowrap;     /* запрещает перенос строк */
  overflow: hidden;        /* скрывает лишний текст */
  text-overflow: ellipsis; /* добавляет "..." в конце */
  display: block;          /* гарантирует блочный контекст */
  max-width: 100%;
}

.task_block_img{
  width: 30px;
  height: 30px;
}

.task_block_img img{
  width: 100%;
  height: 100%;
}

.task_button{
  padding: 8px 15px;
  border-radius: 8px;
  background-color: #e29c06;
  border: none;
  color: #FFFFFF;
  font-weight: bold;
}





.referrals_menu_wrap{
  height: 100%;
  display: none;
}

.referrals_menu{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.level_one_profile_info{
  margin-top: 15px;
}
.level_one_profile_info h2{
  color: #FFFFFF;
}

.level_two_profile_info{
  margin-top: 15px;
}
.level_two_profile_info h2{
  color: #FFFFFF;
}
.button_copy_ref {
  height: 40px;
  margin-top: 20px;
  width: 100%;
  border: none;
  padding: 10px;
  outline: none;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: bold;
  background: linear-gradient(to right, #c8cb0e, #e29c06);
}


.info_ref_rule{
  margin: 20px 0;
}
.info_ref_rule h1{
  color: #FFFFFF;
}
.info_ref_rule p{
  color: #c8cb0e;
}



.modal_window_wrap{
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  background-color: #1f1f1f79;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_window{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block_modal{
  position: relative;
  width: 90%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #080810;
  border: 2px solid #c8cb0e;
  box-shadow: 0 0 10px 3px #c8cb0e;
  color: #FFFFFF;

  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.block_modal_text{
  text-align: center;
}
.exit{
  position: absolute;
  top: 10%;
  right: 7%;
  z-index: 3;
}

.exit img{
  width: 25px;
}


.modal_deposit_wrap {
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  background-color: #1f1f1f79;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_window_deposit {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block_modal_deposit {
  position: relative;
  width: 90%;
  display: flex;
  flex-direction: column;


  background-color: #080810;
  border: 2px solid #c8cb0e;
  box-shadow: 0 0 10px 3px #c8cb0e;
  color: #FFFFFF;

  padding: 20px;
  border-radius: 10px;
}

.block_modal_deposit h1{
  font-size: 18px;
  margin-bottom: 10px;
}

.block_modal_deposit h2{
  margin: 10px 0;
  color: red;
  font-size: 14px;
}

.block_modal_deposit button{
  margin-top: 10px;
  padding: 10px;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #c8cb0e, #e29c06);
}

.exit_deposit{
  position: absolute;
  top: 7%;
  right: 7%;
  z-index: 3;
}

.exit_deposit img{
  width: 25px;
}




.modal_popoln_wrap {
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  background-color: #1f1f1f79;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_popoln_andromeda_wrap {
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  background-color: #1f1f1f79;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_popoln_omega_wrap {
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  background-color: #1f1f1f79;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_popoln_megel_wrap {
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  background-color: #1f1f1f79;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_window_popoln {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block_modal_popoln {
  position: relative;
  width: 90%;
  display: flex;
  flex-direction: column;


  background-color: #080810;
  border: 2px solid #c8cb0e;
  box-shadow: 0 0 10px 3px #c8cb0e;
  color: #FFFFFF;

  padding: 20px;
  border-radius: 10px;
}
.block_modal_popoln input{
  margin: 10px 0;
  width: 100%;
  height: 50px;
  border: 3px solid #c8cb0e;
  background-color: #080810;
  border-radius: 10px;
  outline: none;
  color: #FFFFFF;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
.block_modal_popoln button{
  margin-top: 10px;
  padding: 10px;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #c8cb0e, #e29c06);
}
.exit_popoln{
  position: absolute;
  top: 7%;
  right: 4%;
  z-index: 3;
}

.exit_popoln img{
  width: 25px;
}



.modal_withdraw_wrap {
  display: none;
  position: absolute;
  backdrop-filter: blur(5px);
  background-color: #1f1f1f79;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_window_withdraw {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block_modal_withdraw {
  position: relative;
  width: 90%;
  display: flex;
  flex-direction: column;


  background-color: #080810;
  border: 2px solid #c8cb0e;
  box-shadow: 0 0 10px 3px #c8cb0e;
  color: #FFFFFF;

  padding: 20px;
  border-radius: 10px;
}
.block_modal_withdraw input{
  margin: 10px 0;
  width: 100%;
  height: 50px;
  border: 3px solid #c8cb0e;
  background-color: #080810;
  border-radius: 10px;
  outline: none;
  color: #FFFFFF;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
.block_modal_withdraw h2{
  font-size: 14px;
}
.block_modal_withdraw button{
  margin-top: 10px;
  padding: 10px;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #c8cb0e, #e29c06);
}
.exit_withdraw{
  position: absolute;
  top: 4%;
  right: 4%;
  z-index: 3;
}

.exit_withdraw img{
  width: 25px;
}


.tasks_block_wrap_giga{
  margin: 10px 0;
  border-radius: 15px;
  border: 3px solid #e29c06;
}
.task_block_giga{
  padding: 15px;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tasks_info_wrap{
  display: flex;
  margin-bottom: 10px;
}
.task_block_info_giga{
  color: #FFFFFF;
}

.task_block_img_giga{
  width: 30px;
  height: 30px;
}

.task_block_img_giga img{
  width: 100%;
  height: 100%;
}

.task_button_giga{
  padding: 8px 15px;
  border-radius: 8px;
  background-color: #e29c06;
  border: none;
  color: #FFFFFF;
  font-weight: bold;
}

.skoroh1{
  color: #FFFFFF;
  font-size: 20px;
  margin-top: 20px;
}



/* именно обёртка отвечает за анимацию */
.calc_wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

/* открыто */
.calc_wrapper.open {
  max-height: 2000px; /* любое большое число */
}





.info_profile section{
  margin: 10px 0;
  background: linear-gradient(to right, #d29b35, #8d6213);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
.priceBlock{
  display: flex;
  align-items: center;
  color: #ffffff;
}
.priceBlock h2{
  font-size: 14px;
  margin-left: 10px;
}

.buyBlock{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #26b1f1;
  border-radius: 8px;
  padding: 3px 10px;
  color: #ffffff;
}
.buyBlock p{
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Goldman", sans-serif;
}



.goog-te-banner-frame.skiptranslate {
    display: none !important;
} 



.buttons_timer{
  width: 100%;
  background: linear-gradient(to right, #c8cb0e, #e29c06);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-top: 10px;
}

#claim_timer_stolknov{
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
}

#wrapStolk{

}
