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

#loader {
  width: 100vw;
  height: 100vh;
  display: flex;
  background: var(--brand-gradient);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@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 {
  top: 30%;
  left: 5%;
  opacity: 0.5;
}

#star-2 {
  top: 20%;
  left: 20%;
  opacity: 0.9;
}

#star-3 {
  top: 12%;
  right: 40%;
  opacity: 0.8;
}

#star-4 {
  top: 38%;
  right: 6%;
  opacity: 0.6;
}

#star-5 {
  bottom: 35%;
  left: 12%;
  opacity: 0.7;
}

#star-6 {
  bottom: 20%;
  left: 28%;
  opacity: 0.2;
}

#star-7 {
  bottom: 17%;
  right: 23%;
  opacity: 0.5;
}

#game-logo {
  width: 100%;
  max-width: 900px;
  text-align: center;
  position: relative;
  margin-top: auto;
}

#main-game-image-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

#main-image {
  width: 673px;
  position: relative;
  z-index: 2;
}

#main-game-image-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  max-width: 700px;
  z-index: 2;
  background: var(--spotlight-color);
  height: 90%;
  top: 10%;
  border-radius: 100%;
}

#brand-logo {
  height: var(--logo-height, auto);
  width: var(--logo-width, auto);
}

#game-text {
  width: 400px;
  margin-bottom: 20px;
}

#loader-content {
  text-align: center;
  margin-top: auto;
  margin-bottom: 40px;
}

#logo {
  text-align: center;
  margin-bottom: 16px;
}

#logo img {
  height: var(--logo-height, auto);
  width: var(--logo-width, auto);
}

#progress {
  width: 330px;
  height: 8px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 2px;
  position: relative;
  background-color: #fff;
}

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

#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, #ffffff);
}

@media screen and (max-width: 744px) {
  #main-image {
    width: 93%;
    max-width: 500px;
  }

  #main-game-image-wrap::before {
    width: 70%;
    max-width: 500px;
  }

  #brand-logo {
    height: var(--logo-height-mobile, auto);
    width: var(--logo-width-mobile, auto);
  }

  #game-text {
    width: 243px;
  }

  #logo {
    margin-bottom: var(--logo-margin-bottom-mobile, 24px);
  }

  #logo img {
    height: var(--logo-height-mobile, auto);
    width: var(--logo-width-mobile, auto);
  }

  #progress {
    width: 246px;
  }

  #percent {
    margin-top: 9px;
    line-height: 20px;
    font-size: 14px;
  }
}

@media screen and (max-height: 550px) {
  #main-image {
    max-height: 40vh;
    margin-top: 10%;
  }

  #game-text {
    margin: 10px 0;
  }

  #game-logo {
    margin-top: 20px;
  }
}
