@import url('https://fonts.googleapis.com/css2?family=Akt:wght@100..900&display=swap');

body {
  /* background-color: #ededf6; */
  background-color: #121214;
  font-family: "Inter", sans-serif;
  cursor: default;
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: auto;
  min-width: 600px;
  padding: 15px 30px;
  height: 25px;
  background: rgba(20, 20, 25, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(120, 120, 255, 0.08);
  transition: all 0.3s ease;
}

nav:hover {
  transform: translateX(-50%) translateY(-3px);
  border-color: rgba(130, 130, 255, 0.3);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(130, 130, 255, 0.15);
}

header {
  position: fixed;
  z-index: 9999999999;
}

.btn_buy {
  background: linear-gradient(-290deg, rgba(62, 28, 213, 0.804), rgba(168, 34, 205, 0.804));
  width: 120px;
  height: auto;
  text-align: center;
  padding: 8px;
  margin: 4px;
  border-radius: 10px;
  color: white;
  text-decoration-line: none;
  position: relative;
  overflow: hidden;
  font-size: 20px;
  transition: all 0.3s;
  border: 1px solid #eaeaeab4;
}

.btn_def {
  background: linear-gradient(-290deg, rgba(105, 105, 105, 0.5), rgba(32, 32, 32, 0.5));
  width: 120px;
  height: auto;
  text-align: center;
  padding: 8px;
  margin: 4px;
  border-radius: 10px;
  color: white;
  text-decoration-line: none;
  position: relative;
  overflow: hidden;
  font-size: 20px;
  transition: all 0.3s;
  border: 1px solid #eaeaeab4;
}

.btn_buy:hover,
.btn_def:hover {
  cursor: default;
  transform: translateY(-7px);
  background: linear-gradient(-290deg, rgba(34, 8, 153, 0.804), rgba(134, 10, 168, 0.804));
  box-shadow: 0px 5px 9px 3px rgba(112, 112, 112, 0.874);
}

.btn_def:hover {
  background: linear-gradient(-290deg, rgba(99, 98, 98, 0.444), rgba(27, 27, 27, 0.444));
}

.btn_buy:active,
.btn_def:active {
  transform: scale(0.75);
}

.btn_deff {
  width: 120px;
  height: auto;
  text-align: center;
  padding: 10px;
  margin: 4px;
  border-radius: 10px;
  color: rgb(231, 231, 231);
  text-decoration-line: none;
  position: relative;
  overflow: hidden;
  font-size: 20px;
  transition: all 0.4s;
}

.btn_deff.active {
  width: 120px;
  height: auto;
  text-align: center;
  padding: 8px;
  margin: 4px;
  border-radius: 50px;
  color: rgb(231, 231, 231);
  background: rgba(168, 158, 158, 0.55);
  text-decoration-line: none;
  position: relative;
  overflow: hidden;
  font-size: 20px;
  transition: all 0.4s;
}

.btn_deff:hover {
  color: rgb(154, 153, 153);
  transform: translateY(-6);
}

.btn_deff:active {
  transform: scale(0.81);
}

.btn_deff:focus {
  color: red;
}

.btn_deff:hover,
.btn_buy:hover,
.btn_def:hover {
  color: rgb(154, 153, 153);
  transform: translateY(-6px);
}

.btn_deff:active,
.btn_buy:active,
.btn_def:active {
  transform: scale(0.85);
}

.btn_deff::before,
.btn_deff::after,
.btn_buy::before,
.btn_buy::after,
.btn_def::before,
.btn_def::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  background: #f44336;
  transition: 0.5s;
  border-radius: 20px;
}

.btn_deff::before,
.btn_buy::before,
.btn_def::before {
  top: 0;
  left: 0;
}

.btn_deff::after,
.btn_buy::after,
.btn_def::after {
  bottom: 0;
  right: 0;
}

.btn_deff:hover::before,
.btn_deff:hover::after,
.btn_buy:hover::before,
.btn_buy:hover::after,
.btn_def:hover::before,
.btn_def:hover::after {
  width: 100%;
}

.about-we.hui,
.features-we.hui {
  background-color: beige;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.features-we.hui {
  background-color: #121214;
}

.about-we,
.features-we {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: beige;
  color: black;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  border-radius: 1px 1px 50px 50px;
}

.features-we {
  background-color: #121214;
  color: white;
}

.features-we h1 {
  font-size: 50px;
}

.features-we h2 {
  color: gray;
  font-style: italic;
  font-weight: normal;
  font-size: 40px;
}

.features-we p {
  font-size: 25px;
  width: 600px;
}

.about-we.hui::before,
.features-we.hui::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(197, 98, 129, 0.682) 0%,
      transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
}

.about-we.hui:hover::before,
.features-we.hui:hover::before {
  opacity: 1;
}

.about-we h1 {
  font-size: 50px;
}

.about-we p {
  font-size: 30px;
  width: 467px;
}

.logo {
  width: 800px;
  margin-left: 555px;
  border-radius: 10px;
  margin-top: -299px;
}

.new_bg,
.new_bg-fet {
  background-color: #121214;
  height: auto;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.new_bg::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 255, 123, 0.775) 0%,
      transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
}

.new_bg:hover::before {
  opacity: 1;
}

.new_bg-fet {
  margin: 100px;
  color: white;
}

.new_bg-fet p {
  color: rgb(142, 142, 142);
  width: 400px;
}

.advantages {
  color: white;
  margin: 20px;
  margin-left: 100px;
  position: relative;
}

.advantages h1 {
  font-size: 50px;
}

.advantages p {
  color: gray;
  width: 310px;

}

.advantages-section1,
.advantages-section2,
.advantages-section3,
.advantages-section4,
.advantages-section5,
.advantages-section6 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://i.postimg.cc/8PqQsYb2/1353838.png') no-repeat center center / cover;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  gap: 10px;
  width: 400px;
  background-color: #28282c;
  height: auto;
  padding: 23px;
  border-radius: 9px;
  transition: all 0.5s ease;

}

.advantages-section2 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://i.postimg.cc/k5jdMghP/1353836.png') no-repeat center center / cover;

}

.advantages-section3 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://i.postimg.cc/DzwtNKfq/1347935.png') no-repeat center center / cover;

}

.advantages-section4 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://i.postimg.cc/kXPLmSX4/allinonemovie-minecraft-1106253-1920.png') no-repeat center center / cover;

}

.advantages-section5 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://i.postimg.cc/bw35kF0y/allinonemovie-computer-game-2873192-1920.png') no-repeat center center / cover;

}

.advantages-section6 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('https://i.postimg.cc/6QP1121b/chickenonline-minecraft-655902-1920.png') no-repeat center center / cover;

  position: relative;
  overflow: hidden;
}

.advantages-section1 h5,
.advantages-section2 h5,
.advantages-section3 h5,
.advantages-section4 h5,
.advantages-section5 h5,
.advantages-section6 h5 {
  font-size: 15px;
  color: rgb(181, 181, 181);
}

.advantages-section1:hover,
.advantages-section2:hover,
.advantages-section3:hover,
.advantages-section4:hover,
.advantages-section5:hover,
.advantages-section6:hover {
  box-shadow: 0px 0px 15px 10px rgba(235, 170, 191, 0.705)
}

[class^="advantages-section"] {
  transition: transform 0.4s ease,
    background-size .8s ease,
    box-shadow 0.4s ease;
  background-size: 100% 100%;
}

[class^="advantages-section"]:hover {
  transform: scale(1.05);
  background-size: 120% 120%;
  box-shadow: 0 0 20px rgba(235, 170, 191, .7);
}


.adv-img {
  transition: all 1s ease-out;
  position: relative;
  width: -100%;
  left: 90%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
  border-radius: 100%;
  padding: 6px;
  background-color: rgba(240, 255, 255, 0.248);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(223, 219, 219, 0.626)
}

.adv-img:hover {
  transform: rotate(360deg);
}

.adv-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.advantages-section-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 2px white);
  width: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;

}

.sections {
  display: flex;
  justify-content: space-aroundd;
  gap: 30px;
  flex-wrap: wrap;
  z-index: 1;
}

.img_nav {
  width: 40px;
  border-radius: 100%;
  transition: all 0.4s;
}

.img_nav:hover {
  box-shadow: 0px 0px 20px 15px rgba(29, 130, 239, 0.501)
}

.screenimg {
  box-shadow: inset 0 0 50px 80px #ededf6;
  width: 700px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.6)
}

.sub-section {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 100px;
  gap: 10px;
  width: 300px;
  background-color: #28282c;
  height: auto;
  padding: 23px;
  border-radius: 9px;
  transition: all 0.5s ease;
  transition: all 0.5s ease;

}

.sub-section:hover {
  box-shadow: 0px 0px 15px 10px rgba(235, 170, 191, 0.705)
}

.sub-section h3 {
  color: gray;
}

.advantages-section1::before,
.advantages-section2::before,
.advantages-section3::before,
.advantages-section4::before,
.advantages-section5::before,
.advantages-section6::before,
.sub-section::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(72, 18, 190, 0.789) 0%,
      transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s;
}

.advantages-section1:hover::before,
.advantages-section2:hover::before,
.advantages-section3:hover::before,
.advantages-section4:hover::before,
.advantages-section5:hover::before,
.advantages-section6:hover::before,
.sub-section:hover::before {
  opacity: 100%;
}

.cheat-menu-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://i.postimg.cc/jdcnpVtM/menujujurfu234908ur2347805.png') no-repeat center center / cover;

  width: 800px;
  height: 450px;
  border-radius: 40px;
  position: absolute;
  background-size: 100%;
  top: 0%;
  left: 33%;
}

.dot-cheat-menu-live,
.dot-cheat-menu-lives {
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(113, 224, 9, 0.849);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  font-family: "JetBrains Mono", monospace;
}

.dot-cheat-menu-text-live,
.dot-cheat-menu-text-lives {
  color: rgb(165, 164, 164);
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  font-family: "JetBrains Mono", monospace;

}

.features-mini-box-live,
.features-mini-box-lives {
  width: 67px;
  height: 20px;
  background: rgba(52, 52, 52, 0.571);
  position: absolute;
  top: 3%;
  left: 90%;
  backdrop-filter: blur(1px);
  border-radius: 10px;
}

.dot-cheat-menu-melt {
  display: block;
  width: 13px;
  height: 13px;
  background: rgba(113, 224, 9, 0.849);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  font-family: "JetBrains Mono", monospace;
}

.dot-cheat-menu-text-melt {
  color: rgb(165, 164, 164);
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-family: "JetBrains Mono", monospace;

}

.features-mini-box-melt {
  width: 250px;
  height: 50px;
  background: rgba(52, 52, 52, 0.571);
  position: absolute;
  top: 88%;
  left: 3%;
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.btn_img-main,
.btn_img {
  width: 23px;
  padding: auto;
  margin: 2px;
  position: absolute;
  top: 12%;
  left: 2%;
  filter: brightness(0) invert(1) drop-shadow(0 0 2px white);
}

.btn_img {
  position: absolute;
  top: 20%;
}

.features-info {
  margin: 67px;
  margin-top: 300px;
}

.features-info-box {
  border-radius: 2px;
  width: 1000px;
  margin-top: 20px;
  height: auto;
  position: relative;
  overflow: hidden;


}

.features-info-box-score {
  font-size: 35px;
  color: gray;
}

.features-info-box p {
  color: gray;
  margin: 15px;
  margin-left: 50px;
  width: 500px;


}

.features-info-box h5 {
  color: gray;
  padding: auto;
  margin: 0;
  margin-left: 50px;
}

.features-info-box h2 {
  padding: 10px;
  margin: 0;
  margin-left: 40px;
}

.features-info-box::before {
  content: "";
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.238) 0%,
      transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.features-info-box:hover::before {
  opacity: 100%;
}

.dot-cheat-menu-lives {
  background: rgba(9, 20, 224, 0.849);
  position: absolute;
  top: 50%;
  left: 3%;
}

.dot-cheat-menu-text-lives {
  position: absolute;
  top: 50%;
  left: 90%;
  width: 350px;

}

.features-mini-box-lives {
  width: 210px;
  position: absolute;
  top: 5%;
  left: 78%;
}

.features_hr {
  width: 1000px;
  height: .1px;
  margin: 30px auto;
  border: none;
  background: #666666;
  box-shadow: 0 0 12px #666666;
  border-radius: 50px;
}

.info_index {
  position: absolute;
  right: 1px;
  top: 150px;
  width: 350px;
  text-align: left;
}

.info_index p {
  font-style: italic;
}

@media (max-width: 900px) {
  .info_index {
    position: static;
    width: 100%;
    text-align: center;
    margin: 30px 0;
  }
}

.about {
  padding: 10px;
  margin: 89px;
  color: white;
}

.about h1 {
  font-size: 45px;
}

.about h5 {
  width: 500px;
  font-size: 20px;
  color: gray;
}

.about p {
  color: rgb(211, 211, 211);
}

.about li {
  list-style-type: disc;
  gap: 5px;
}

.buy_menu {
  padding: 15px;
  margin: 50px;
  color: white;
}

.buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.buy_menu h1 {
  margin-top: 50px;
}

footer {
  background-color: rgba(1, 1, 35, 0.689);
  color: rgb(185, 157, 246);
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 180px;
  padding: 15px;
  margin: 8px;
  border-radius: 50px 50px 0px 0px;
}

.footer_text {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-self: flex-end;
  margin-bottom: 25px;
}

.social_btn {
  transition: all 0.3s ease;
}

.social_img {
  width: 35px;
  filter: brightness(0) invert(1) drop-shadow(0 0 2px rgb(98, 97, 97));
  transition: all 0.3s ease;
}

.social_img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgb(255, 245, 245));
}

.social_network {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 13px;
  gap: 15px;
}

.fade-in {
  opacity: 0;
  transform: translateY(67px);
  transition: all 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  50% {
    opacity: .4
  }
}