@font-face {
  font-family: Maladroit;
  src: url('../fonts/maladroit.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Star Galaxy Background for Hero Section */
.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.stars-container.fade-in {
  opacity: 1;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
}

.stars-small {
  background: radial-gradient(1px 1px at 134px 67px, #fff, transparent),
              radial-gradient(1px 1px at 78px 24px, #fff, transparent),
              radial-gradient(1px 1px at 189px 81px, #fff, transparent);
  background-repeat: repeat;
  background-size: 250px 120px;
  height: 200vh;
  animation: stars-move-1 60s linear infinite;
  opacity: 1.0;
}

.stars-medium {
  background: radial-gradient(2px 2px at 89px 29px, #fff, transparent),
              radial-gradient(2px 2px at 198px 73px, #fff, transparent);
  background-repeat: repeat;
  background-size: 300px 150px;
  height: 200vh;
  animation: stars-move-2 90s linear infinite;
  opacity: 0.8;
}

.stars-large {
  background: radial-gradient(3px 3px at 137px 33px, #fff, transparent),
              radial-gradient(3px 3px at 47px 87px, #fff, transparent);
  background-repeat: repeat;
  background-size: 320px 180px;
  height: 200vh;
  animation: stars-move-3 120s linear infinite;
  opacity: 1.0;
}

@keyframes stars-move-1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}

@keyframes stars-move-2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}

@keyframes stars-move-3 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .stars-small {
    background-size: 150px 75px;
  }

  .stars-medium {
    background-size: 200px 100px;
  }

  .stars-large {
    background-size: 250px 150px;
  }
}

.section_hero {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.block_rocket {
  z-index: 1;
  height: 40%;
  position: relative;
}

.rocket {
  height: 100%;
  position: relative;
}

.logo {
  height: 22%;
  margin-top: 0;
  margin-bottom: -118px;
  position: relative;
  inset: auto;
}

.bg {
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.background-video, .bg_video {
  width: 100%;
  height: 100%;
}

.block_socials {
  justify-content: center;
  align-items: center;
  margin: 25px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.tg {
  background-color: #242424;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  margin-left: 15px;
}

.tg:hover {
  background-color: #242424;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.section_about {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
}

.block_para {
  width: 850px;
}

.para {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-family: Maladroit, Impact, sans-serif;
  font-size: 30px;
  line-height: 35px;
}

.block_stream {
  background-color: #6a3982;
  border: 5px solid #000;
  border-bottom-width: 15px;
  border-radius: 25px;
  width: 950px;
  height: 600px;
  margin-top: 100px;
  padding: 15px;
}

.stream_div {
  background-color: #a056c5;
  border: 3px solid #d582ff;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.socials_bottom {
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 75px;
  margin-right: 15px;
  display: flex;
}

.buy_button {
  background-color: #a056c5;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 55px;
  margin: 25px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Maladroit, Impact, sans-serif;
  font-size: 18px;
  line-height: 18px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.buy_button:hover {
  background-color: #c26eec;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.ca {
  background-color: #a056c5;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 55px;
  margin: 25px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Maladroit, Impact, sans-serif;
  font-size: 18px;
  line-height: 18px;
  display: flex;
  position: absolute;
  inset: auto auto 0%;
}

.ca:hover {
  background-color: #c26eec;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.youtube {
  background-color: #fe0300;
  background-image: url('../images/youtube.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  margin-left: 15px;
}

.youtube:hover {
  background-color: #fe0300;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.twitch {
  background-color: #c844ff;
  background-image: url('../images/twitch.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  margin-left: 15px;
}

.twitch:hover {
  background-color: #c844ff;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.kick {
  background-color: #242424;
  background-image: url('../images/kick.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  margin-left: 15px;
}

.kick:hover {
  background-color: #242424;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.tiktok {
  background-color: #242424;
  background-image: url('../images/tiktok.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  margin-left: 15px;
}

.tiktok:hover {
  background-color: #242424;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.dex {
  background-color: #242424;
  background-image: url('../images/dex.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  margin-left: 15px;
}

.dex:hover {
  background-color: #242424;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.x {
  background-color: #242424;
  background-image: url('../images/x.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 110%;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 5px;
  width: 55px;
  height: 55px;
  margin-left: 15px;
}

.x:hover {
  background-color: #242424;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.ca_mobile {
  background-color: #a056c5;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 55px;
  margin: 25px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Maladroit, Impact, sans-serif;
  font-size: 18px;
  line-height: 18px;
  display: none;
  position: absolute;
  inset: auto auto 0%;
}

.ca_mobile:hover {
  background-color: #c26eec;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.section_welcome {
  z-index: 100;
  background-color: #7fecf0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.section_welcome.hidden {
  display: none;
}

.continue {
  background-color: #a056c5;
  border: 3px solid #000;
  border-bottom-width: 6px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 55px;
  margin: 25px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Maladroit, Impact, sans-serif;
  font-size: 18px;
  line-height: 18px;
  display: flex;
  position: relative;
  inset: 0% auto auto 0%;
}

.continue:hover {
  background-color: #c26eec;
  border-top-width: 6px;
  border-bottom-width: 3px;
}

.continue.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fart {
  height: 100%;
  position: absolute;
  inset: 0%;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}

.fart.show {
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .block_rocket {
    height: 550px;
  }

  .logo {
    width: auto;
    height: 150px;
    margin-bottom: -36px;
  }

  .block_para, .block_stream {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {

  .stars-small {
    background-size: 150px 75px;
  }

  .stars-medium {
    background-size: 200px 100px;
  }

  .stars-large {
    background-size: 250px 150px;
  }

  .block_rocket {
    height: 400px;
  }

  .logo {
    height: 100px;
    margin-bottom: -37px;
  }

  .block_socials {
    margin-top: 108px;
    right: auto;
  }

  .para {
    font-size: 25px;
    line-height: 30px;
  }

  .buy_button {
    width: 90%;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
  }

  .ca {
    display: none;
  }

  .ca_mobile {
    display: flex;
  }

  .continue {
    width: 90%;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 479px) {
  .block_rocket {
    height: 300px;
    margin-top: 25px;
  }

  .logo {
    height: 65px;
    margin-top: 102px;
    margin-bottom: -30px;
  }

  .block_socials {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
    display: flex;
  }

  .para {
    font-size: 18px;
    line-height: 23px;
  }

  .socials_bottom {
    flex-flow: column;
  }

  .section_welcome.hidden {
    display: none;
  }
}


@font-face {
  font-family: 'Maladroit';
  src: url('../fonts/maladroit.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
