@font-face {
  font-family: 'Geologica'; /* Имя шрифта, которым будете пользоваться */
  src: url('./Geologica/geologica-light-cyrillic.woff2') format('woff2'); /* Подключение woff2 */
  font-weight: 300; /* Толщина шрифта */
  font-style: normal; /* Стиль шрифта */
}
@font-face {
  font-family: 'Geologica'; /* Имя шрифта, которым будете пользоваться */
  src: url('./Geologica/geologica-regular-cyrillic.woff2') format('woff2'); /* Подключение woff2 */
  font-weight: 400; /* Толщина шрифта */
  font-style: normal; /* Стиль шрифта */
}
@font-face {
  font-family: 'Geologica'; /* Имя шрифта, которым будете пользоваться */
  src: url('./Geologica/geologica-semibold-cyrillic.woff2') format('woff2'); /* Подключение woff2 */
  font-weight: 600; /* Толщина шрифта */
  font-style: normal; /* Стиль шрифта */
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #828282;
  background-color: #050508;
  height: 100%;
}
.wrapper {
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  display: flex;
  justify-content: center;
}
.update-page {
  padding: 15px 0 66px 0;
  text-align: center;
  max-width: 1062px;
}
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4px 0;
  background: #050508;
  backdrop-filter: blur(8px);
  @media (min-width: 768px) {
    padding: 24px 0;
  }
}
.logo{
  width: 116px;
  @media (min-width: 768px) {
    width: 228px;
  }
}
.alert {
  display: flex; /* Меняем на flex, так как нужно для анимации */
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: #01B15C;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%); /* Начальное положение - скрыт сверху */
  opacity: 0; /* Невидимость изначально */
  transition: transform 0.5s ease, opacity 0.5s ease; /* Плавные переходы */
  padding: 8px;
  width: 288px;
  height: 57px;
  z-index: 9999; /* Убедитесь, что оно поверх остальных элементов */

  @media (min-width: 768px) {
    padding: 8px 16px;
    gap: 8px;
    width: 432px;
    top: 104px;
  }
}

.alert.show {
  transform: translate(-50%, 0); /* Становится видимым - выезжает вниз */
  opacity: 1; /* Делается полностью видимым */
}

.alert__img{
  width: 20px;
  height: 20px;
  margin: 6px;
  @media (min-width: 768px) {
    width: 24px;
    height: 24px;
    margin: 0;
  }
}
.alert__text{
  width: 236px;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  @media (min-width: 768px) {
    font-size: 16px;
    line-height: 24px;
    width: 368px;
  }
}
.video{
  margin-top: 50px;
  max-width: 100vw;
  @media (min-width: 768px) {
    margin-top: 112px;
  }
}
.description {
  position: relative;
  margin-top: -48px;
  backdrop-filter: blur(8px);
  padding: 12px 0;
  @media (min-width: 768px) {
    margin-top: -80px;
  }
}
.description__image {
  position: absolute;
  z-index: 0;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 676px;
  height: 316px;
}
.description__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title {
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  font-weight: 600;
  @media (min-width: 768px) {
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto;
    width: 80%;
  }
  @media (min-width: 1440px) {
    width: auto;
  }
}
.main__text{
  color: #8E949C;
  font-size: 14px;
  line-height: 20px;
  width: 310px;
  margin-bottom: 12px;
  font-weight: 300;
  @media (min-width: 768px) {
    margin: 12px 0;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}
.timer__wrapper{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 117px;
  padding: 4px 8px 8px 8px;
  border: 1px solid #181D25;
  border-radius: 16px ;
  background: radial-gradient(119.17% 119.17% at 50% -19.17%, #3A3F46 0%, #0E1217 57.85%);
}
.timer__element{
  width: 31px;
  text-align: center;
}
.timer__element-top{
  color: #767676;
  font-size: 12px;
  line-height: 18px ;
}
.timer__element-bottom{
  margin-top: 4px;
  background: radial-gradient(119.17% 119.17% at 50% -19.17%, #494F57 0%, #1A2029 57.85%);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 31px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24;
  font-weight: 600;
  letter-spacing: 0;
}
.wrapper__forms{
  @media (min-width: 768px) {
    display: flex;
    flex-direction: row-reverse  ;
  }
}
.beton-banner{
  margin-top: 12px;
  padding: 12px;
  background-color: #0E1217;
  position: relative;
  height: 144px;
  margin-left: 8px;
  margin-right: 16px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  @media (min-width: 768px) {
    min-width: 267px;
    height: 145.5px;
    margin-top: 24px;
  }
  @media (min-width: 1200px) {
    height: 144px;
  }
}
.beton-banner__title{
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: #FFF;
  max-width: 129px;
  line-height: 24px;
  position: relative;
  z-index: 2;
}
.beton-banner__btn{
  text-decoration: none;
  padding: 10px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #6C4AC2;
  border-radius: 96px;
  width: 120px;
  color: #FFF;
  position: relative;
  z-index: 2;
}
.beton-banner__img{
  height: 144px;
  position: absolute;
  right: 0;
  top: 0;
  @media (min-width: 768px) {
    top: auto;
    bottom: 0;
  }
}
.bottom__wrapper{
  background-color: #0E1217;
  margin: 8px 15px 0 15px;
  border-radius: 24px;
  padding: 12px;
  overflow: hidden;
  @media (min-width: 768px) {
    max-width: 100%;
    width: 100%;
    margin: 24px 0 24px 16px;
  }
  @media (min-width: 1440px) {
    display: flex;
    padding: 16px;
    align-items: center;
    max-width: 100%;
    width: 1062px;
    height: 144px;
  }
}
.bonus__wrapper{
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  @media (min-width: 768px) {
    justify-content: start;
    margin-bottom: 0;
  }
  @media (min-width: 1440px) {
    width: 100%;
  }
}
.bonus__image-wrapper {
  margin-right: 8px;
}
.bonus__blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.bonus__image{
  position: relative;
  z-index: 3;
  width: 40px;
  height: 40px;
  @media(min-width: 768px){
    width: 88px;
    height: 88px;
  }
}
.bonus__text{
  text-align: left;
  color: #8E949C;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300  ;
  @media (min-width: 768px) {
    margin-bottom: 8px;
  }
  @media (min-width: 1200px) {
    margin-bottom: 16px;
    width: 500px;
  }
}
.email__wrapper{
  z-index: 1;
  @media (min-width: 768px) {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  @media (min-width: 1200px) {
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 16px;
  }
}
.email__input{
  width: 100%;
  text-align: center;
  color: #57606B;
  background: #050508;
  font-size: 14px;
  line-height: 21px;
  border: 1px solid #25282D;
  padding: 12px 0;
  border-radius: 12px;
  @media (min-width: 768px) {
    width: 100%;
  }
  @media (min-width: 1440px) {
    width: 100%;
    text-align: left;
    padding-left: 10px;
  }
}
.email__input::placeholder {
  color: #57606B;
}
.email__input:focus{
  outline: none;
  border-color: #fcc200;
}
.email__btn{
  background-color: #181D25;
  border: none;
  width: 100%;
  padding: 10px 0;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 12px;
  @media (min-width: 768px) {
    margin-top: 0;
  }
  @media (min-width: 1200px) {
    height: 47px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: 222px;
  }
  &:hover{
    background-color: #33333380;
  }
}
.error-wrapper{
  display: none;
  gap: 4px;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #E84C4C;
  line-height: 18px;
  margin-bottom: 4px;
  @media (min-width: 1440px) {
    position: absolute;
  }
}
.footer{
  border-top: 1px solid #242424;
  color: white;
  background-color:  rgba(11, 13, 17, 0.70);
  width: 100%;
  height: 64px;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 4;
}
.footer__link{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 44px;
  height: 44px;
}
.footer__image {
  width: 44px;
  height: 44px;
}
.overlay{
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9;
  background-color: rgba(5, 5, 8, 0.9);
  top: 0;
  left: 0;
}
.input-error{
border: 1px solid #E84C4C;
}
.modal{
  display: none;
  background-color: #050508;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  padding: 8px 16px;
  @media (min-width: 768px) {
    width: 736px;
    height: 650px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    border: 1px solid #242424;
  }
}
.modal__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.modal__header-left{
  display: flex;
  align-items: center;
}
.modal__header-img{
  width: 48px;
  height: 48px;
  margin-right: 8px;
}
.modal__header-text{
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.modal__header-close{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 42px;
  background:#333;
}
.modal-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #242424;
  background:rgba(51, 51, 51, 0.70);
}
.modal-btn__left{
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-btn__title{
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 4px;
}
.modal-btn__text{
  color: #A1A1A1;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}
.modal-btn__arrow{
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 42px;
  background: #333;
  width: 32px;
  height: 32px;
}
.form__wrapper-desk{
  width: 100%;
}
.email-form__wrapper{
  width: 100%;
}
.email__wrapper.mob{
  @media (min-width: 768px) {
    display: none;
  }
}
.email__wrapper.desk{
  display: none;
  @media (min-width: 768px) {
    gap: 8px;
    display: flex;
  }
}
#cloudflare{
  display: none;
}

