body {
  font-family: "Inter", sans-serif;
  margin: 0;
}

/* Основной контейнер лоадера */
#loader {
  width: 100vw;
  height: 100vh;
  background-image: var(--brand-gradient);
  overflow: hidden;
  position: relative;
}

@supports (height: 100dvh) {
  #loader {
    height: 100dvh;
  }
}

/* Звезды */
.star {
  width: 4px;
  height: 4px;
  background-color: #fefeff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #fefeffa3;
  position: absolute;
}

#star-1 {
  bottom: 18%;
  left: 2%;
}

#star-2 {
  bottom: 34%;
  right: 5%;
}

#star-3 {
  top: -5%;
  left: 28%;
}

/* Контейнер изображений */
#image_wrapper {
  width: 494px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-49%, -70%);
}

/* Основное изображение игры */
#main-image {
  width: 494px;
  height: 357px;
}

/* Текст игры */
#text {
  width: 342px;
  height: 58px;
}

/* Волна */
#wave {
  position: absolute;
  z-index: -1;
  right: -200px;
  bottom: -5px;
}

/* Нижняя часть лоадера */
.loader-content__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

/* Логотип бренда */
#logo {
  text-align: center;
  margin-bottom: 20px;
}

#logo img {
  height: var(--logo-height, 28px);
}

/* Прогресс-бар */
#progress {
  width: 340px;
  height: 7px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 2px;
  position: relative;
  background-color: #FFFFFF;
}

#bar {
  position: absolute;
  border-radius: 10px;
  width: 98%;
  right: 2px;
  height: 3px;
  background-color: var(--bar-color, #FF8C0B);
}

#percent {
  margin-top: 13px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.09px;
  color: var(--fg-content-primary);
}

/* Медиа-запросы */
@media screen and (max-width: 744px) {
  #star-1 {
    bottom: 15%;
    left: 23%;
  }
  
  #star-2 {
    right: 20%;
  }
  
  #star-3 {
    opacity: 0;
  }
  
  #main-image {
    width: 349px;
    height: 252px;
  }
  
  #text {
    width: 210px;
    height: 35px;
  }
  
  #wave {
    width: 600px;
    right: 0px;
    bottom: 24px;
  }
  
  .loader-content__bottom {
    bottom: 32px;
  }
  
  #logo {
    margin-bottom: 24px;
  }
  
  #logo img {
    height: var(--logo-height-mobile, 24px);
  }
  
  #progress {
    width: 246px;
    height: 8px;
  }
  
  #bar {
    height: 4px;
  }
  
  #percent {
    margin-top: 9px;
    line-height: 20px;
    font-size: 14px;
  }
}