/*------------------------------*/
/*====== BACKGROUND STARS ======*/
/*------------------------------*/
#particles-js {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: 50% 50%;
}


/*-----------------------*/
/*====== PAGE FONT ======*/
/*-----------------------*/
@font-face {
    font-family: "FadeoutLemonMilk";
    src: url("/main/fonts/lemonMilk3.otf") format("opentype");
}
@font-face {
    font-family: "FadeoutLemonMilkBI";
    src: url("/main/fonts/lemonMilk1.otf") format("opentype");
}


/*--------------------*/
/*====== TOPBAR ======*/
/*--------------------*/
topbar {
  z-index: 1;
  position: fixed;
  list-style-type: none;
  margin: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-color: rgba(25, 25, 25, 0.5);
}
li {
  float: left;
}
li a {
  display: block;
  color: white;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
}
a:hover:not(.active):not(.download-demo):not(.download-steam):not(.download-android):not(.download-source) {
  background-color: rgba(255, 0, 0, 0.5);
}
.active {
  background-color: rgba(255, 0, 0, 0.5);
}


/*-----------------------*/
/*====== SLIDESHOW ======*/
/*-----------------------*/
#FeaturedVideo{
    padding-top:  50px;
}
/*** Featured ***/
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}
/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  max-height: 500px;
  position: relative;
  margin: auto;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  display: block;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active2, .dot:hover {
  background-color: #717171;
}
/* Fading animation */
#Title{
    padding-top:  50px;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: lightblue;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
.slideshow-thumbnails {
  display: flex;
  overflow-x: auto;
  padding: 1% 20%;
  justify-content: flex-start;
  gap: 10px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.slideshow-thumbnails::-webkit-scrollbar {
  height: 8px;
}
.slideshow-thumbnails::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 4px;
}
.thumbnail-img {
  height: 60px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.thumbnail-img:hover,
.active-thumbnail {
  opacity: 1;
  transform: scale(1.05);
}
.mySlides {
  display: none;
  position: relative;
}
.mySlides .numbertext {
  position: absolute;
  top: 8px;
  left: 5%;
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  background-color: rgba(0,0,0,0.9);
  border-radius: 4px;
}
.mySlides img {
  width: 100%;
  height: 400px;
  display: block;
  margin: 0 auto;
  max-width: 700px;
  max-height: 500px;
  object-fit: contain;
}
.mySlides .text {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  color: #aaaaaa;
  font-size: 16px;
  padding: 8px 8px;
  background-color: rgba(0,0,0,0.75);
  box-sizing: border-box;
}


/*---------------------*/
/*====== GENERAL ======*/
/*---------------------*/
/* Image pixelation */
.pixelated {
  image-rendering: pixelated;
}

/* Image in image */
.image-container {
  position: relative;
  object-fit: cover;
  width: 100%;
  margin: 0 auto;
  height: 200px;
  background-color: rgba(0, 0, 0, 1);
}
.background-image {
  display: block;
  width: 100%;
  height: 360px;
}
.overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  image-rendering: pixelated;
  color: #FFFFFF;
}

/*Containers for center content stuffs*/
.outer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  margin: 0 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}
.content-container {
  background-color: rgba(6, 6, 6, 0.95);
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
}


/*Download Links*/
.download-container {
  background-color: rgba(12,12, 12, 0.5);
  position: relative;
  top: 35px;
  width: 90%;
  left: 5%;
  padding: 10px;
  justify-content: center;
}
.download-demo {
  opacity: 0.5;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12;
  width: 175px;
  height: 50px;
  border-radius: 8px;
  line-height: 50px;
  transition: all 0.5s ease;
}
.download-demo:hover {
  opacity: 2;
  transform: scale(1.1);
}