body {
    background-image: url('/assets/bg/stars.gif');
    height: 100vh; /* full viewport height */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


/*-- Header Styling --*/

.header {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.header h1 {
  font-family: "stgotic W00 Regular", sans-serif;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #D0FF00;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.sparkleDivider {
  scale: 200%;
  margin-top: -70px;
  margin-bottom: 50px;
}

.banner {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  border-top: 2px solid #D0FF00;
  border-bottom: 2px solid #D0FF00;
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.3); /* dark overlay for readability */
  font-family: "Press Start 2P", monospace; /* pixelated font */
  font-size: 16px;
  letter-spacing: 2px;
  color: #D0FF00; /* flat green */
}

.scrollingText {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 18s linear infinite;
}

/*-- Content Styling --*/

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  gap: 40px;
  margin-top:30px
}

/* Stormy Cloud and Lightning Styling */

.stormyCloud {
  display: none;
  position: relative;
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.cloud {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 500px;
  height: auto;
}

.lightning1 {
  position: absolute;
  left: 350px;
  top: 330px;
  scale: 70%;
}

/* .lightning2 {
  position: absolute;
  left: 200px;
  top: 330px;
} */

.lightning3 {
  position: absolute;
  left: 150px;
  top: 330px;
  transform: scaleX(-1);
}

/* Abbey of the Last Star Title Styling */

.abbeyOfTheLastStar {
  display: none;

  /* display: flex; */
  flex-direction: column;
  align-items: center;
  position: relative;
  scale: 80%;
  animation: float 6s ease-in-out infinite;
}

.abbeyPictureBox {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 600px;
  transform: translateX(-85px);
}

.mainDomen {
  width: 100%;
  height: auto;
}

.subDomen {
  width: 100%;
  height: auto;
  transform: scaleY(-1); /* flip vertically */
  opacity: 0.4;          /* make it look like a reflection */
  margin-top: -5px;
  filter: blur(1px);
}

.shiningStar {
  position: absolute;
  top: 35px;
  left: 125px;
  z-index: -1;
  scale: 90%;
}

.abbeyOfTheLastStar p {
  font-family: "JSL Blackletter", serif;
  font-size: 80px;
  position: relative;
  top: 355px;
  transform: translateX(-85px);

  z-index: 3;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
  color: rgb(20, 22, 12, 0.7);
    
  /* background: linear-gradient(90deg, #5E5E5E 0%, #797979 23.27%, #9D9D9D 39.92%, #BFBFBF 55.59%, #FFF 59.71%, #C7C7C7 64.9%, #A8A8A8 77.15%, #818181 101.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.earth {
  display: none;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  /* animation: float 8s ease-in-out infinite; */
}

.earthLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #D0FF00;
  font-family: "Ishmeria", monospace;
  font-size: 24px;
  gap: px;
}

.earthLink:hover p {
  text-shadow: 0 0 10px #D0FF00;
  transform: scale(1.05);
}

/*--------------------------------------------------------------------------------*/

/* Scrollling banner animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Floating motion keyframes */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* move slightly upward */
  }
  100% {
    transform: translateY(0); /* return to start */
  }
}
