@font-face {
  font-family: 'TS-Block-Bold';
  src: url(TS-Block-Bold.ttf);
}

body{
  background-color: black;
  text-align: center;
}

h1{
  color:white;
  font-family: 'TS-Block-Bold';
}

.logorow{
  width: 90%;
  max-width: 1300px;
  height: auto;
  margin:auto;
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.staticlogo{
  position: relative;
  bottom: 40px;
  width: 38%;
  min-width: 200px;
  height: auto;
  margin-left: auto;
  min-width: 495.9px;
  min-height: 129.137px;
}

.leftgif,
.rightgif{
  width: 15%;
  min-width: 100px;
}

p{
  position: relative;
  bottom:90px;
  color:white;
  font-family: 'TS-Block-Bold';
}

.navbar{
  padding: 1rem 0;
  background-color: transparent;
  margin-bottom: 20px;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
}

.nav-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color:white;
  font-family: 'TS-Block-Bold';
}

@media (max-width: 1430px) {
  .nav-links {
    gap: 2rem;  /* shrink spacing slightly for mid-sized screens */
  }
}

.nav-links a{
  text-decoration: none;
  position: relative;
}

.nav-links a:link,
.nav-links a:visited{
  color: white;
}

.nav-links a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px; /*space between text and underline*/;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.5s ease;
}

.nav-links a:hover::after{
  transform: translateX(-50%) scaleX(1);
}

.mainimg{
  width: 100%;
	-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}

.latestrelease{
  margin: 0 auto 5rem auto;
  max-width: fit-content;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.5s both;
	animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.5s both;
}

.releasecontent{
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.releasecontent a{
  display: inline-block;
  width: 20%;
}

.releasecontent a img.LRCover{
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease-in;
}

.releasecontent a img.LRCover:hover{
  transform: scale(1.1);
}

.latestrelease h1{
  font-size: 64px;
}

.releasetxt {
  display: flex;
  align-items: flex-start; /* or center if needed */
  justify-content: center;
  flex-direction: column;
  color: white;
  font-family: 'TS-Block-Bold';
}

.stackedtxt{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left; 
}

.stackedtxt .line1{
  font-size: 3rem; /* adjust as needed */
  font-family: 'TS-Block-Bold';
  font-weight: bold;
  margin: 0;
}


.gif-and-copyright{
  align-items: center;
  display: flex;
  flex-direction: column;
}

/* footer css*/

.copyright{
  color: white;
    font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.show-if-no-animation {
  opacity: 1 !important;
}

.foot{
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 2s both;
  animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 2s both;
}

.footerimg{
  height: 3%;
  width: 3%;
}

.social-links{
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.social-links img{
  height: 24px;
  width: 24px;
}



/* ----------------------------------------------
 * Generated by Animista on 2025-5-28 1:22:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;

  }
  100% {
    opacity: 1;

  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

