body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  scroll-behavior: smooth;
}

.container {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.fontfam {
  font-family: "Roboto Mono";
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  z-index: 999;
  background-color: #4b4b4b5b;
  backdrop-filter: blur(10px);
}

.head-left {
  display: flex;
  align-items: center;

  img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
}

.head-left button {
  border: none;
  padding: 10px 30px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.head-left button:hover {
  opacity: 0.7;
}

.head-right {
  display: flex;

  a {
    text-decoration: none;
    padding-left: 25px;
    color: white;
    font-size: 15px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-vid {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-info {
  top: 80px;
  left: 50px;
  z-index: 1;
  position: absolute;

  h1 {
    font-size: 120px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 30px;
    margin-right: 20px;
    margin-bottom: 0;
  }

  p {
    color: white;
    max-width: 270px;
    font-size: 20px;
  }
}

.hero-info button {
  background-color: #edff66;
  border: 2px solid #edff66;
  padding: 10px 40px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  color: black;
}

.hero-info button:hover {
  background-color: transparent;
  color: white;
  box-shadow: 0 0 15px #edff66;
}

.gaming-text {
  font-size: 120px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  position: absolute;
  right: 20px;
  bottom: 30px;
  margin: 0;
}

.next-btn {
  width: 200px;
  height: 200px;
  background-color: #edff66b6;
  position: absolute;
  bottom: 45%;
  right: 45%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transition: 0.5s;
}

.next-btn:hover {
  width: 200px;
  height: 200px;
  opacity: 1;
  box-shadow: 0 0 15px white;
}

.about-section {
  width: 100%;
  height: 100%;
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;

  p {
    font-size: 12px;
  }

  h1 {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 900;
    font-size: 100px;
    max-width: 1150px;
    text-align: center;
    margin: 25px 0;
    text-transform: uppercase;
    background: linear-gradient(
      to right,
      #4acfee,
      #53f8c9,
      #02d79a,
      #6070fd,
      #2a46ff,
      #0099ff,
      #4acfee
    );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s infinite linear;
  }

  h4 {
    margin-top: 50px;
    margin-bottom: 0;
  }

  h5 {
    margin-top: 5px;
    color: gray;
    max-width: 425px;
    line-height: 25px;
    text-align: center;
  }
}

.image-box {
  width: 360px;
  height: 510px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;

  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@keyframes animate-gradient {
  to {
    background-position: 200%;
  }
}

.info-section {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 80%;
  margin-top: 100px;

  h3 {
    margin-bottom: 0;
  }

  p {
    margin-top: 5px;
    color: gray;
    max-width: 400px;
    line-height: 25px;
  }
}

.info-cards {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.card {
  position: relative;
  width: auto;
  height: 40vh;
  overflow: hidden;
  border: 1px solid gray;
  border-radius: 20px;
  transition: 0.5s;

  h1 {
    position: absolute;
    margin: 0;
    top: 10px;
    left: 5%;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 60px;
    z-index: 1;
    background: linear-gradient(
      to right,
      #4acfee,
      #53f8c9,
      #02d79a,
      #6070fd,
      #2a46ff,
      #0099ff,
      #4acfee
    );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s infinite linear;
    max-width: 250px;
  }

  p {
    position: absolute;
    top: 80px;
    left: 5%;
    z-index: 1;
    max-width: 250px;
    color: lightgray;
  }

  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  button {
    position: absolute;
    bottom: 5%;
    left: 5%;
    padding: 10px 25px;
    border: 1px solid gray;
    background-color: #0f1217;
    color: gray;
    border-radius: 20px;
    box-shadow: 0 0 5px lightgray;
    cursor: pointer;
    transition: 0.3s;
  }

  button:hover {
    box-shadow: 0 0 15px lightgray;
    opacity: 0.7;
  }
}

.card:hover {
  box-shadow: 0 0 15px white;
}

.card:nth-child(1) {
  grid-column: span 2;
}

.card:nth-child(2) {
  grid-row: span 2;
  height: 83vh;
}

.contact-section {
  position: relative;
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-bottom: 100px;

  p {
    margin-top: 100px;
  }

  h1 {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 70px;
    max-width: 550px;
    text-align: center;
    background: linear-gradient(
      to right,
      #4acfee,
      #53f8c9,
      #02d79a,
      #6070fd,
      #2a46ff,
      #0099ff,
      #4acfee
    );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s infinite linear;
  }

  button {
    padding: 10px 25px;
    border: 1px solid gray;
    background-color: #0f1217;
    color: gray;
    border-radius: 20px;
    box-shadow: 0 0 5px lightgray;
    cursor: pointer;
    transition: 0.3s;
  }

  button:hover {
    box-shadow: 0 0 15px lightgray;
    opacity: 0.7;
  }
}

.img1 {
  position: absolute;
  top: 10%;
  right: 20px;
  height: 400px;
  clip-path: polygon(32% 0%, 94% 0%, 74% 100%, 0% 100%);
}

.img2 {
  position: absolute;
  top: 10px;
  left: 50px;
  height: 200px;
  clip-path: polygon(35% 6%, 75% 0%, 100% 50%, 75% 100%, 36% 95%, 8% 49%);
}

.img3 {
  position: absolute;
  left: 5%;
  bottom: 5%;
  height: 250px;
  width: 250px;
  clip-path: polygon(52% 5%, 100% 38%, 82% 100%, 34% 93%, 0% 38%);
}

.stones-img {
  position: absolute;
  margin-top: 22%;
  width: 500px;
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(211, 211, 211, 0.21);
  backdrop-filter: blur(10px);
  height: 100px;

  p {
    margin: 0 20px;
  }

  ul {
    display: flex;
    list-style: none;
    margin-right: 140px;
  }

  a {
    text-decoration: none;
    color: white;
    padding: 7px;
    border-radius: 50px;
    border: 1px solid lightskyblue;
    margin: 0 10px;
  }
}

.autoBlur {
  animation: autoBlurAnimation linear both;
  animation-timeline: view();
}

@keyframes autoBlurAnimation {
  0% {
    filter: blur(40px);
  }

  40%,
  60% {
    filter: blur(0);
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    filter: blur(40px);
    transform: translateY((-200px));
    opacity: 0;
  }
}

.autoTakeFull {
  animation: autoTakeFullAnimation both;
  animation-timeline: view(70% 65%);
}

@keyframes autoTakeFullAnimation {
  to {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    margin-bottom: 100px;
  }
}

.autoDisplay {
  animation: autoDisplayAnimation both;
  animation-timeline: view(70% 5%);
}

@keyframes autoDisplayAnimation {
  from {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
