* {
  font-family: "Sahar";
  font-weight: 900;
  font-style: normal;
  color: white;
  text-decoration: none;
}

body {
  height: 100vh;
  margin: 0;
  background: url("../assets/bg-normal.png") center/auto 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main {
  overflow-x: hidden;
  width: 100%;
}
main .popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
main .popup .content {
  background-color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 20px 50px;
  margin: 20px;
  text-align: center;
  border-radius: 44px;
  width: 1000px;
  position: relative;
}
main .popup .content .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 34px;
  font-weight: 400;
  color: #b00;
  cursor: pointer;
  font-weight: bold;
}
main .popup .content .group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main .popup .content .text-vsm {
  font-size: 12px;
}
main .popup .content .text-sm {
  font-size: 14px;
}
main .popup .content .text-nm {
  font-size: 16px;
}
main .popup .content .text-b {
  font-size: 18px;
}
main .popup .content .markets {
  display: flex;
  justify-content: center;
  gap: 60px;
}
main .popup .content .markets .market-btn {
  background: black;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  text-decoration: none;
}
main .popup .content .markets .market-btn .text-content {
  display: flex;
  flex-direction: column;
  align-items: end;
}
main .popup .content .markets .market-btn img {
  height: 0.78cm;
}
main .popup .content .golden-href {
  color: orange;
  text-decoration: none;
}
@media (max-width: 660px) {
  main .popup .content {
    width: 90% !important;
    margin: 20px !important;
    padding: 20px 10px;
  }
  main .popup .content .text-vsm {
    font-size: 10px;
  }
  main .popup .content .text-sm {
    font-size: 12px;
  }
  main .popup .content .text-nm {
    font-size: 14px;
  }
  main .popup .content .text-b {
    font-size: 16px;
  }
  main .popup .content .markets {
    gap: 20px;
  }
  main .popup .content .markets .market-btn {
    padding: 6px;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  main .popup .content .golden-href {
    word-break: break-all;
  }
}
@media (max-width: 380px) {
  main .popup .content .markets {
    gap: 4px;
  }
  main .popup .content .markets .market-btn {
    padding: 6px;
    min-width: -moz-min-content !important;
    min-width: min-content !important;
  }
}
main .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
main .content .logo {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-shadow: 0 0 4px #000;
  z-index: 1;
}
main .content .logo .brand-name {
  display: flex;
  flex-direction: column;
  align-content: center;
}
main .content .logo .brand-name * {
  margin: 0;
  padding: 0;
  line-height: 26px;
}
main .content .pocket {
  display: flex;
  align-items: center;
  position: relative;
  left: -100px;
  animation: float 6s ease-in-out infinite;
}
main .content .pocket:hover {
  animation-play-state: paused;
}
main .content .pocket .pocket-img {
  width: 390px;
  height: 280px;
  transform: rotateZ(-5deg);
  position: absolute;
  left: calc(50% - 220px);
  z-index: 2;
}
main .content .pocket .hand {
  width: 130px;
  height: 100px;
  z-index: 1;
}
main .content .pocket .info {
  text-align: center;
  z-index: 1;
}
main .content .pocket .info img {
  background-color: #000;
  border-radius: 50%;
  width: 90px;
}
main .content .pocket .info .text {
  font-size: 25px;
}
main .content .pocket-2 {
  position: relative;
  left: 140px;
  margin-top: 60px;
  animation: float 10s ease-in-out infinite;
}
main .content .pocket-2 .pocket-img {
  transform: rotateY(180deg) rotateZ(-4deg);
  left: calc(50% - 190px);
}
main .content .pocket-2 .info {
  text-align: center;
  z-index: 1;
}
main .content .pocket-2 .info img {
  background-color: #000;
  width: 90px;
}
main .footer {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .footer .networks {
  display: flex;
  justify-content: center;
  gap: 14px;
}
main .footer .text {
  font-size: 20px;
  text-align: center;
}
@media (max-height: 850px) {
  main .logo {
    margin-top: 30px;
  }
  main .footer {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  main .pocket {
    left: -40px !important;
  }
  main .pocket .pocket-img {
    width: 280px !important;
    height: 200px !important;
    left: calc(50% - 160px) !important;
  }
  main .pocket .hand {
    width: 92px !important;
    height: 71px !important;
  }
  main .pocket .info img {
    width: 66px !important;
  }
  main .pocket .info .text {
    font-size: 18px !important;
  }
  main .pocket-2 {
    left: 70px !important;
    margin-top: 60px;
  }
  main .pocket-2 .pocket-img {
    left: calc(50% - 130px) !important;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
    filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.2));
  }
}/*# sourceMappingURL=main.css.map */
