
@font-face {
  font-family: Bold;
  src: url(Fonts/Poppins\ Bold\ 700.ttf);
}

@font-face {
  font-family: Black;
  src: url(Fonts/Poppins-Black.ttf);
}

@font-face {
  font-family: Medium;
 src: url(Fonts/Poppins\ Medium\ 500.ttf);
}

@font-face {
  font-family: Semi-Bold;
  src: url(Fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: Light;
  src: url(Fonts/Poppins-Light.ttf);
}


@font-face {
  font-family: Thin;
  src: url(Fonts/Poppins-Thin.ttf);
}


:root {
  --background: #111111;
  --orange: #fea015;
  --dark:  #191919;
  --light: #444444;
}

html {
  touch-action: pan-x pan-y; /* Allow panning, but disable zooming */
  overscroll-behavior: none;
  overflow-x: scroll;
  overflow-y: hidden;
}



body {
  background-image: url('Images/background.gif');
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  min-width: 100vw;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-snap-type: x mandatory;
}



.page {
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  height: 100vh;
  min-width: 100vw;
  z-index: 1;
}



main {
  height: calc(100vh - 4rem);
  width: calc(100vw - 10rem);
  margin-bottom: auto;
  z-index: 2;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 4rem;
  z-index: 99;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 50%;
  height: 50%;
  
}

.nav-container button.active {
  color: white !important;
}

.nav-container button {
  border: 0;
  color: var(--light);
  background: none;
  font-family: Thin;
  font-size: 1.7rem;
}

@media screen and (max-width: 1000px) {
  .nav-container {
    width: 75%;
  }
}

@media screen and (max-height: 600px) {
  nav {
    display: none;
  }
}


@media screen and (max-height: 700px) and (max-width: 1000px) {
  nav {
    display: none;
  }
}


@media screen and (max-width: 550px) {
  .nav-container {
    width: 100%;
  }
}

.left {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  left: 0;
  height: 100%;
  width: 5rem;
  z-index: 999;
}

.left button {
  height: 100%;
  width: 100%;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: Bold;
  font-size: 6rem;
  color: var(--dark);

}

.left-background {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: Bold;
  font-size: 6rem;
  left: 0;
  height: 100%;
  width: .5rem;
  border-radius: 100%;
  color: var(--dark);

  filter: blur(2rem);
  z-index: 998;
}



.right {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Bold;
  font-size: 6rem;
  right: 0;
  height: 100%;
  width: 5rem;
  color: var(--dark);
  z-index: 999;
}

.right button {
  border: 0;
  height: 100%;
  width: 100%;
  background: none;
  font-family: Bold;
  cursor: pointer;
  font-size: 6rem;
  color: var(--dark);
}


.right-background {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Bold;
  font-size: 6rem;
  right: 0;
  height: 100%;
  width: .5rem;
  border-radius: 100%;
  color: var(--dark);
  transition: color 0.3s;
  filter: blur(2rem);
  z-index: 998;
}

.home {
  display: flex; /* flex */
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.home-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 1500px;
}

.qc {
  width: clamp(19rem, 25vw, 35rem);
  height: clamp(19rem, 25vw, 35rem);
  aspect-ratio: 1 / 1;
  position: relative;
  pointer-events: none;
  z-index: 5;
  text-align: bottom;
}

.qc::after {
  content: url(Images/drag-icon.png);
  z-index: -1;
  align-items: center;
  top: 90%;
  position: absolute;
  justify-content: center;
  display: flex;
  width: 100%;

}

.home header {
  font-size: clamp(6rem, 8vw, 10rem);
  font-family: Bold;
  word-wrap: break-word;
}

#title{
  color: var(--orange);
  animation: glow-animation 1.5s ease-in-out infinite alternate;
}

@keyframes glow-animation {
  0% {
    text-shadow: 0 0 10px rgba(254, 160, 21, 0.2);
  }
  100% {
    text-shadow: 0 0 20px rgba(254, 160, 21, 0.6);
  }
}

#sub-title {
  color: white;
}



@media screen and (max-width: 900px) {
  .home-container {
    flex-direction: column;
    width: 90%;
  }
  .qc {
  width: 45vw;
  height: 45vw;
  }

  .qc::after {
    display: none;
  }
  .home header {
    text-align: center;
    font-size: 12vw;
  }
}


.canvas {
  position: absolute;
  pointer-events: none;
  top: 0;
  opacity: 1;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  min-height: 100vh;
  min-width: 100vw;
}



.store {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.models-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: auto;

  width: calc(99vw - 6rem);
  height: calc(100vh - 10rem);
  margin-left: 1rem;
}

.model-slider {
  grid-row-start: 1;
  grid-column-start: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  min-height: clamp(35rem, calc(100vw * 0.40), 45rem);
  overflow-x: hidden;
}

.model-item {
  display: flex;
  color: white;
  opacity: 1;
  font-size: 1rem;

  height: 30vw;
  width: 16.6vw;
  margin: 0 2vw 0 2vw;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.5s ease;
}

.model-img-container {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  
}

.model-character {
  grid-row-start: 1;
  grid-column-start: 1;
  width: 16.6vw;
  transition: width ease-in-out 200ms;
}
.model-background {
  margin-top: 5.395vw;
  grid-row-start: 1;
  grid-column-start: 1;
  height: 21.58vw;
  width: 16.6vw;
}

.model-logo {
  grid-row-start: 1;
  margin-top: auto;
  height: 9.2vw;
  grid-column-start: 1;

}

.selected .model-character  {
  width: 20vw;
}


.model-item:not(.selected) {
  transform: translate(clamp(10rem, 10vw, 15rem));
}


.button-container {
  display: flex;
  width: calc(99vw - 6rem);
}

.slider-buttons {
  display: flex;
  min-width: clamp(14rem, 20.5vw, 26rem);
  justify-content: space-between;
}

.slider-buttons button {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  border: 0;
  background-color: var(--orange);
}

.nav-buttons {
  display: flex;
  align-items: center;
  height: 3rem;
  justify-content: space-around;
}

.nav-buttons button {
  min-width: 20rem;
  height: 3rem;
  z-index: 999;
}


.nav-buttons button:hover {
  background-color: black;
}


.info-button {
  height: 5rem;
  width: 13rem;
  margin-right: auto;
  background-color: var(--dark);
  border: thin solid var(--orange);
  font-family: Medium;
  color: white;
  font-size: 1rem;
}




.cheat-info {
  grid-row-start: 1;
  grid-column-start: 1;
  flex-flow: row wrap;
  border-radius: 3rem;
  display: flex;
  pointer-events: none;
  opacity: 1;
  transition: opacity 200ms ease-in-out;
  flex-direction: row;
  min-height: clamp(35rem, calc(100vw * 0.40), 45rem);
  width: 70%;
  margin-left: auto;
  padding: 1.5%;
  background-color: var(--dark);
}

.cheat-video {
  border-radius: .5rem;
  width: auto;
  height: 45%;
  aspect-ratio: 16/9;
}

iframe {
  border-radius: .5rem;
  border: 0;
}
.info-container {
  height: 45%;
  width: 40%;
}

.info-container header {
  margin-left: 1rem;
  color: white;
  font-size: max(1.5rem, 3vh);
  font-family: Bold;
  white-space: nowrap;
  padding: 0;
}

.info-container span {
  color: green;
}

.info-container p {
  margin-top: 0;
  margin-left: 1rem;
  color: var(--light);
  font-size: max(1.2rem, 2.5vh);
  font-family: Small;
}

.payment-container {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  height: 50%;
  width: 35%;
}

.rust-payment {
  width: 80%;
  height: 65%;
  text-align: center;
  font-size: max(1.7rem, 2.5vh);
}

.rust-payment td {
  border-top: #fea015 thin solid;
  font-family: Medium;
  color: white;
}

.payment-container button{
  text-align: center;
  width: 80%;
  height: 20%;
  border-radius: 1rem;
  font-family: Bold;
  border: var(--orange) thin solid;
  color: white;
  background-color: rgba(254, 160, 21, 0.6);
  font-size: max(2rem, 3vh);
}


.feature-container {
  height: 50%;
  width: 65%;
}

.cheat-exit {
  position: absolute;
  left: calc(2vw + 5rem);
  bottom: 5vh;
  width: 10rem;
  height: 4rem;
  border-radius: .5rem;
}


.feature-container header {
  text-align: center;
  color: white;
  Font-family: Bold;
  font-size: max(1.5rem, 3vh);
}

.rust-table {
  display: flex;
  width: 100%;
  min-height: 87.5%;
  max-height: 87.5%;
  overflow-y: overlay;
  overflow-x: overlay;
  color: white;
  justify-content: center;
  table-layout: fixed;
  min-width: 300px;
}

.rust-table th {
  font-family: Bold;
  font-weight: 400;
  font-size: max(1rem, 2vh);
}

.rust-table th::after {
  content: '';
  width: 50%;
  transform: translateX(50%);
  height: 5px;
  position: relative;
  display: block;
  bottom: 0; 
  background-color: white;
}

.rust-table td{
  text-align: center;
  word-break: break-word;
  min-width: 10rem;
  padding: .5rem 1rem;
  font-family: Medium;
  font-size: max(.7rem, 1.5vh);
}



.faq {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

.search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 15%;
}

.search-container header {
  font-family: Bold;
  color: white;
  font-size: 2.5rem;
  text-align: center;
}

.form {
  display: flex;
}

.accordian-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  scroll-snap-type:mandatory;
  width: 55vw;
  height: 62%;
  overflow-y: scroll;
}
.accordian-container::-webkit-scrollbar {
  width: 8px; /* Set the width of the scrollbar track */

}

.accordian-container::-webkit-scrollbar-track {
  background-color: var(--light); /* Set the background color of the scrollbar track */
  border-radius: 1rem;
}

.accordian-container::-webkit-scrollbar-thumb {
  background-color: var(--orange); /* Set the color of the scrollbar thumb */
  border-radius: 1rem;
}

.accordian {
  display: flex;
  flex-direction: column;
  min-width: 50vw;
  min-height: 4rem;
  height: 4rem;
  margin-top: 1vw;
  padding: 0 1vw;
  border-radius: 1rem;
  background-color: var(--dark);
  overflow: hidden;
  transition: min-height ease-in-out 150ms;

}

.accordian:first-child {
  margin-top: 0;
}

.question-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  height: 3rem;
  margin-top: .5rem;
  width: 50vw;
  font-size: 1rem;
}

.question-container p {
  color: white;
  font-family: Medium;
  border-bottom: thin solid var(--light);
}

.question-container span {
  color: white;
  font-family: Medium;
}

.answer-container {
  height: 3.5rem;
  width: 50vw;
}

.answer-container p {
  margin-top: .5rem;
  font-size: 1rem;
  color: white;
  font-family: Thin;
}


.form {
  width: 70%;
  --border-height: 1px;
  --border-before-color: var(--light);
  --border-after-color: var(--orange);
  position: relative;

 }

 .input {
  color: #fff;
  font-size: 1rem;
  background-color: transparent;
  width: 100%;
  box-sizing: border-box;
  padding-inline: 0.5em;
  padding-block: 0.7em;
  border: none;
  border-bottom: var(--border-height) solid var(--border-before-color);
 }

 .input-border {
  position: absolute;
  background: var(--border-after-color);
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: 0.3s;
 }
 
 input:focus {
  outline: none;
 }
 /* here is code of animated border */
 input:focus ~ .input-border {
  width: 100%;
 }


 

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

  .accordian {
    margin-top: 2vw;
    border-radius: .7rem;
    min-height: 3rem;
  }

  .search-container header {
    font-size: 2rem;
    word-wrap: break-word;
  }
  .question-container {
    font-size: .7rem;
    height: 2.5rem;
    min-height: 2.5rem;
  }
  .answer-container p {
    font-size: 2vw;

  }
}




.aboutus {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
}

.title-container {
  width: 100%;
  height: 20%;
}

.title-container header {
  font-family: Bold;
  font-size: 5rem;
  color: white;
  text-align: start;
  margin: 1rem 0rem 0rem 2rem;
  white-space: nowrap;
}

.about-info-container {
  width: 90%;
  height: 70%;
  overflow-y: overlay;
}

.about-info-container p {
  word-wrap: break-word;
  font-family: Medium;
  color: var(--light);
  margin: 0;
}

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

  .title-container header {
    text-align: center;
    margin-top: 1rem;
    font-size: 10vw;
    margin-left: 0;
  }

  .aboutus {
  align-items: center;
  }
}

.about-info-container::-webkit-scrollbar {
  width: 8px; /* Set the width of the scrollbar track */
}

.about-info-container::-webkit-scrollbar-track {
  background-color: var(--light); /* Set the background color of the scrollbar track */
  border-radius: 1rem;
  
}

.about-info-container::-webkit-scrollbar-thumb {
  background-color: var(--orange); /* Set the color of the scrollbar thumb */
  border-radius: 1rem;
}