@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
@import url("https://use.typekit.net/yhm5bgi.css");


* {
  margin: 0 auto;
  padding: 0 auto;
  outline: none;
  box-sizing: border-box;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400;
}




:root{
  --bg-top:#0a0a0a; --bg-mid:#111111; --bg-bot:#1a1a1a;
  color-scheme: dark;
}
html, body{
  background: linear-gradient(135deg,var(--bg-top),var(--bg-mid) 50%,var(--bg-bot));
  background-color: var(--bg-top);
}

body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}



.status {
  background: #814d14;
  color: #ffd572;
  font-variant: all-small-caps;
  padding-bottom: 4px;
  font-size: 17px;
  text-align: center;
}
i.fa-solid.fa-hourglass-half.fa-beat-fade {
  font-size: 12px;
}



nav {
  display: flex;
  height: 95px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px 0 100px;
  flex-wrap: wrap;
  position: absolute;
  z-index: 1;
  transition: all 0.3s ease;
}
nav .logo {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: #c5c5c5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  transition: all 0.3s ease;
  background: #fefefe08;
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  display: flex;
  align-items: center;
}

nav ul li a.active,
nav ul li a:hover {
  color: #ff901a;
  background: #ff992a0f;
}

.activehover:hover {
  color: #df9439;
}


.offline {
  color: #945219;
  background: rgba(131, 54, 15, 0.219);
}

.offline:hover {
  color: #ca282882;
  background: rgba(90, 35, 8, 0.212);
  box-shadow: 0 0 8px 1px #ca282882;
}

nav .menu-btn i {
  color: #f1f1f1;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

input[type="checkbox"] {
  display: none;
}


.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}

.content div {
  font-size: 40px;
  font-weight: 700;
}

img.nav-logo {
  width: 174px;
}

.mainlogo {
  width: 600px;
}


@keyframes pgfill {
  0% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }

  25% {
    background-image: linear-gradient(#c07b20 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }

  50% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#c96e19 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }

  75% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#c94b19 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0);
  }

  100% {
    background-image: linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#FFF 20px, transparent 0), linear-gradient(#ee5316 20px, transparent 0);
  }
}

.load {
  position: relative;
  top: 80%;
  color: #fff;
}

.text1 {
  margin: 0 0 10px;
}

@media (max-width: 1050px) {
  nav {
    padding: 0 40px 0 50px;
  }

  .mainlogo {
    width: 450px;
  }
}

@media (max-width: 940px) {
  nav .menu-btn i {
    display: block;
  }

  .mainlogo {
    width: 480px;
  }

  #click:checked~.menu-btn i:before {
    content: "\f00d";
  }

  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    background: #0d0d0d;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 4px 50px;
  }

  #click:checked~ul {
    left: 0;
  }

  nav ul li {
    width: 100%;
    margin: 40px 0;
  }

  nav ul li a {
    width: 100%;
    color: #ededed;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  #click:checked~ul li a {
    margin-left: 0px;
    padding: 18px;
  }

  nav ul li a.active,
  nav ul li a:hover {
    background: #814d14;
    color: #ffaa50;
  }
}

@media (max-width: 600px) {
  .mainlogo {
    width: 300px;
  }
}






section {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100vh;
  scroll-snap-align: center;
}

section#home {
  height: auto;
}

section#page2 {
  height: 30%;
  background: #3b1e04;
}

section#page3 {
  background: url('../img/Background.png');
  height: 100%;
}

section#page4 {
  height: 30%;
  background: rgb(13 13 13);
}

.home {
  height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.video {
  margin: 0 10px;
  color: #ffffff;
}


a.input_container {
  display: flex;
  align-items: center;
  background: linear-gradient(33deg, #e99090, #ff7800);
  padding: 5px 15px;
  border-radius: 5px;
  margin: 7px 0;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  justify-content: center;
  transition: color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  position: relative;
  overflow: hidden;
}

a.input_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(33deg, #e99090, #ff7800);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 1;
}

a.input_container:hover::before {
  opacity: 0;
}

a.input_container:hover {
  background: linear-gradient(33deg, #c26767, #ff5100);
}
i.icon1, i.icon2 {
  color: #ffffff;
  font-size: 25px;
  padding: 5px;
}


.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.8s forwards;
}

.video-wrapper {
  position: relative;
  background: #0000004a;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out;
  width: 80%;
  max-width: 1000px;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d32828;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #b12222;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-overlay.open {
  display: flex;
}

h1.info {
  color: #7c7c7c;
  font-size: 18px;
  max-width: 540px;
  font-weight: 100;
  min-width: 10px;
  font-family: system-ui;
  text-align: justify;
  margin-top: 15px;
}
.gamelogo {
  width: 550px;
}
img.pcgame {
  width: 60px;
  margin-left: 20px;
}
.bottominfo {
  display: -webkit-inline-box;
  margin-top: 30px;
}
.left {
  font-size: 40px;
  font-weight: 700;
  text-align: -webkit-center;
  margin-right: 110px;
}
.right {
  display: flex;
  align-items: center;
  margin-left: 110px;
}
img.steamgame {
  width: 170px;
}
.dls2 {
    display: -webkit-inline-box;
}






footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background: radial-gradient(circle, #181818 0, #161616 14%, #080808 80%);
  height: auto;
  padding: 50px;
  color: #dfdfdf;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 20%);
  outline: 1px solid #3838383b;
}

.footerlogo {
  width: 70px;
  height: auto;
  margin: 10px 0;
}

.footer-left {
  position: relative;
  margin-right: 0;
  margin: 0;
}

.footer-left2 {
  position: relative;
  margin-left: 30px;
  margin: 0 40px;
}

.footer-left3 {
  position: relative;
  margin-left: 30px;
  margin: 0 40px;
}

.footer-left4 {
  position: relative;
  margin-left: 30px;
  margin: 0 40px;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.footer-content h3 {
  font-size: bold;
  text-transform: capitalize;
  line-height: 3rem;
  color: #c57d3c;
}

p.footercopyright {
  color: #666666;
}

.footer-content p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
}

.footerlink {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
  color: #dfdfdf;
  display: flex;
  text-decoration: none;
}

.footer-bottom {
  background: #e1e1e1;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0px 4px 15px rgb(0 0 0 / 20%);
}

.footer-bottom p {
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}

.contact {
  font-size: 15px;
  font-weight: 100;
  border: 2px solid #303030;
  padding: 10px 20px;
  border-radius: 100px;
  color: #a1a1a1;
}
img.marian{
  margin-right: 23px;
  overflow: unset;
  box-sizing: border-box;
  margin-top: -48px;
  margin-left: -30px;
  width: 145px;
  height: 150px;
}




@media (max-width: 1360px) {
  .conceptart{
    width: 400px;
    transition: all 0.3s ease;
  }
}
@media (max-width: 1210px) {
  .conceptart{
    width: 300px;
    transition: all 0.3s ease;
  }
}
@media (max-width: 1100px) {
  .conceptart{
    width: 250px;
    transition: all 0.3s ease;
  }
}

@media (max-width: 1060px) {
  .home {
    height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.conceptart{
  width: 500px;
  transition: all 0.3s ease;
}
  .left {
    margin-right: auto;
  }
  .right {
    margin-top: 60px;
    margin-left: auto;
  }

}


@media (max-width: 850px) {
  .content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 600px;
}

  section {
    width: 100%;
    height: 110vh;
  }

  .boxes {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
  }
}


@media (max-width: 800px) {
  .footer-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
  }

  .footerlogo {
    margin: 0 30px;
  }
}


@media (max-width: 555px) {
  .gamelogo {
    width: 400px;
}
h1.info {
  max-width: 400px
}
.conceptart{
  width: 400px;
}
.content{
  top: 52%;
}
section{
  height: 90vh;
}
}

@media (max-width: 440px) {
  section{
    height: 100vh;
  }
  .gamelogo {
    width: 300px;
}
h1.info {
  max-width: 300px
}
.conceptart{
  width: 300px;
}
.content{
  top: 57%;
}
.input_container {
  padding: 5px 6px;
}
img.pcgame {
  width: 40px;
  margin-left: 10px;
}
img.steamgame {
  width: 120px;
}
.bottominfo {
  display: flow;
}
.pcgametab {
  margin-top: 10px;
}
}