* {
  direction: ltr;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: Poppins;
  background-blend-mode: multiply;
  background-image: url(/assets/imgs/body-bg.jpg);
  background-color: rgba(26, 26, 26, 0.9);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  overflow-y: hidden;
  overflow-x: hidden;
}

button {
  all: unset;
}

code {
  background-color: hwb(0 10% 90% / 0.7);
}

strong {
  color: #9846e9;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

.containers-max-width {
  width: 100% !important;
  max-width: 100%;
}

/* loading  */

.loading-parent {
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 20;
  /* overflow: hidden; */
  background-color: rgba(26, 26, 26, 1);
  transition: all 0.5s ease;
  visibility: visible;
  opacity: 1;
}

.loading-parent.hide {
  visibility: hidden;
  opacity: 0;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wheel-and-hamster {
  --dur: 1s;
  position: relative;
  width: 12em;
  height: 12em;
  font-size: 14px;
  display: block;
}

.wheel,
.hamster,
.hamster div,
.spoke {
  position: absolute;
}

.wheel,
.spoke {
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wheel {
  background: radial-gradient(
    100% 100% at center,
    hsla(0, 0%, 60%, 0) 47.8%,
    hsl(0, 0%, 60%) 48%
  );
  z-index: 2;
}

.hamster {
  animation: hamster var(--dur) ease-in-out infinite;
  top: 50%;
  left: calc(50% - 3.5em);
  width: 7em;
  height: 3.75em;
  transform: rotate(4deg) translate(-0.8em, 1.85em);
  transform-origin: 50% 0;
  z-index: 1;
}

.hamster__head {
  animation: hamsterHead var(--dur) ease-in-out infinite;
  background: hsl(30, 90%, 55%);
  border-radius: 70% 30% 0 100% / 40% 25% 25% 60%;
  box-shadow: 0 -0.25em 0 hsl(30, 90%, 80%) inset,
    0.75em -1.55em 0 hsl(30, 90%, 90%) inset;
  top: 0;
  left: -2em;
  width: 2.75em;
  height: 2.5em;
  transform-origin: 100% 50%;
}

.hamster__ear {
  animation: hamsterEar var(--dur) ease-in-out infinite;
  background: hsl(0, 90%, 85%);
  border-radius: 50%;
  box-shadow: -0.25em 0 hsl(30, 90%, 55%) inset;
  top: -0.25em;
  right: -0.25em;
  width: 0.75em;
  height: 0.75em;
  transform-origin: 50% 75%;
}

.hamster__eye {
  animation: hamsterEye var(--dur) linear infinite;
  background-color: hsl(0, 0%, 0%);
  border-radius: 50%;
  top: 0.375em;
  left: 1.25em;
  width: 0.5em;
  height: 0.5em;
}

.hamster__nose {
  background: hsl(0, 90%, 75%);
  border-radius: 35% 65% 85% 15% / 70% 50% 50% 30%;
  top: 0.75em;
  left: 0;
  width: 0.2em;
  height: 0.25em;
}

.hamster__body {
  animation: hamsterBody var(--dur) ease-in-out infinite;
  background: hsl(30, 90%, 90%);
  border-radius: 50% 30% 50% 30% / 15% 60% 40% 40%;
  box-shadow: 0.1em 0.75em 0 hsl(30, 90%, 55%) inset,
    0.15em -0.5em 0 hsl(30, 90%, 80%) inset;
  top: 0.25em;
  left: 2em;
  width: 4.5em;
  height: 3em;
  transform-origin: 17% 50%;
  transform-style: preserve-3d;
}

.hamster__limb--fr,
.hamster__limb--fl {
  clip-path: polygon(0 0, 100% 0, 70% 80%, 60% 100%, 0% 100%, 40% 80%);
  top: 2em;
  left: 0.5em;
  width: 1em;
  height: 1.5em;
  transform-origin: 50% 0;
}

.hamster__limb--fr {
  animation: hamsterFRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 80%) 80%, hsl(0, 90%, 75%) 80%);
  transform: rotate(15deg) translateZ(-1px);
}

.hamster__limb--fl {
  animation: hamsterFLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 90%) 80%, hsl(0, 90%, 85%) 80%);
  transform: rotate(15deg);
}

.hamster__limb--br,
.hamster__limb--bl {
  border-radius: 0.75em 0.75em 0 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 30%,
    70% 90%,
    70% 100%,
    30% 100%,
    40% 90%,
    0% 30%
  );
  top: 1em;
  left: 2.8em;
  width: 1.5em;
  height: 2.5em;
  transform-origin: 50% 30%;
}

.hamster__limb--br {
  animation: hamsterBRLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 80%) 90%, hsl(0, 90%, 75%) 90%);
  transform: rotate(-25deg) translateZ(-1px);
}

.hamster__limb--bl {
  animation: hamsterBLLimb var(--dur) linear infinite;
  background: linear-gradient(hsl(30, 90%, 90%) 90%, hsl(0, 90%, 85%) 90%);
  transform: rotate(-25deg);
}

.hamster__tail {
  animation: hamsterTail var(--dur) linear infinite;
  background: hsl(0, 90%, 85%);
  border-radius: 0.25em 50% 50% 0.25em;
  box-shadow: 0 -0.2em 0 hsl(0, 90%, 75%) inset;
  top: 1.5em;
  right: -0.5em;
  width: 1em;
  height: 0.5em;
  transform: rotate(30deg) translateZ(-1px);
  transform-origin: 0.25em 0.25em;
}

.spoke {
  animation: spoke var(--dur) linear infinite;
  background: radial-gradient(
      100% 100% at center,
      hsl(0, 0%, 60%) 4.8%,
      hsla(0, 0%, 60%, 0) 5%
    ),
    linear-gradient(
        hsla(0, 0%, 55%, 0) 46.9%,
        hsl(0, 0%, 65%) 47% 52.9%,
        hsla(0, 0%, 65%, 0) 53%
      )
      50% 50% / 99% 99% no-repeat;
}

/* Animations */
@keyframes hamster {
  from,
  to {
    transform: rotate(4deg) translate(-0.8em, 1.85em);
  }

  50% {
    transform: rotate(0) translate(-0.8em, 1.85em);
  }
}

@keyframes hamsterHead {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(0);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(8deg);
  }
}

@keyframes hamsterEye {
  from,
  90%,
  to {
    transform: scaleY(1);
  }

  95% {
    transform: scaleY(0);
  }
}

@keyframes hamsterEar {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(0);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(12deg);
  }
}

@keyframes hamsterBody {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(0);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(-2deg);
  }
}

@keyframes hamsterFRLimb {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(50deg) translateZ(-1px);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(-30deg) translateZ(-1px);
  }
}

@keyframes hamsterFLLimb {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(-30deg);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(50deg);
  }
}

@keyframes hamsterBRLimb {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(-60deg) translateZ(-1px);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(20deg) translateZ(-1px);
  }
}

@keyframes hamsterBLLimb {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(20deg);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(-60deg);
  }
}

@keyframes hamsterTail {
  from,
  25%,
  50%,
  75%,
  to {
    transform: rotate(30deg) translateZ(-1px);
  }

  12.5%,
  37.5%,
  62.5%,
  87.5% {
    transform: rotate(10deg) translateZ(-1px);
  }
}

@keyframes spoke {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-1turn);
  }
}
/* header  */
.menu {
  margin: auto;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.2s;
}

.menu > div {
  border-width: 0 0 3px 0;
  border-style: solid;
  border-image: linear-gradient(to left, rgba(199, 114, 148, 1), #9846e9) 1;
}

.scrolled {
  background-color: rgba(29, 29, 29, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-width: 0 0 3px 0;
  border-style: solid;
  border-image: linear-gradient(to left, rgba(199, 114, 148, 1), #9846e9) 1;
}

.logo {
  width: 65px;
  height: 65px;
  position: relative;
  transition: all 0.5s;
}

.scrolled .logo {
  width: 60px;
  height: 60px;
}

.scrolled > div {
  border: none;
}

.logo a {
  position: absolute;
  transition: transform 2s;
  transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -webkit-transform-origin: center center;
}

.logo:hover {
  animation: 3s infinite alternate floatingLogo;
}

@keyframes floatingLogo {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-5px);
  }
  100% {
    transform: translatey(0px);
  }
}

.add-to-server-btn {
  all: unset;
  border: 2px solid #ac62f7;
  border-radius: 50px;
  padding: 8px 10px;
  background: none;
}

.add-to-server-btn:hover {
  background-image: linear-gradient(
    90deg,
    rgba(199, 114, 148, 1) 0%,
    rgba(152, 70, 233, 1) 90%
  );
}

.add-to-server-btn i {
  font-size: 18px;
  padding-right: 5px;
}

.navigation ul li {
  transition: all 0.2s;
}

.navigation ul li:hover {
  transform: scale(1.07);
  background-image: linear-gradient(
    90deg,
    rgba(199, 114, 148, 1) 50%,
    rgba(152, 70, 233, 1) 90%
  );
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.menu-lang-btn {
  position: relative;
  border: 2px solid #ac62f7;
  border-radius: 50px;
  padding: 8px 10px;
  background: none;
}

.menu-lang-btn:hover {
  background-image: linear-gradient(
    90deg,
    rgba(199, 114, 148, 1) 0%,
    rgba(152, 70, 233, 1) 90%
  );
}
.menu-lang-btn img {
  width: 40px;
}

/* header  */

.main-header {
  position: relative;
  margin-top: 6rem;
}

.header-left-content h1 {
  font-size: 40px;
}

.header-left-content h1 strong {
  font-size: 55px !important;
}

.header-right-content-logo {
  max-width: 350px;
  animation: 4s infinite alternate floating;
}

@keyframes floating {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}

.header-wave {
  height: 30vh;
}
.footer-wave {
  height: 25vh;
}

.bottom-wave {
  background-image: url(/assets/imgs/Wave-up.svg);
  bottom: -10px;
}

.down-wave {
  background-image: url(/assets/imgs/Wave-down.svg);
}

.bottom-wave,
.down-wave {
  background-size: cover;
  background-position: 50%;
  height: 100%;
  position: absolute;
  width: 100%;
}

/* details section  */
main {
  overflow: hidden;
  background-color: #81467e;
}

.section-details {
  position: relative;
}

.section-details-item {
  margin-bottom: 5rem !important;
}

.section-details-item > div:first-child {
  max-width: 550px;
}

.section-details-item h2,
.section-invite h2 strong {
  color: #9846e9;
  background-color: hsla(0, 0%, 100%, 0.7);
}

.section-details-item img {
  max-width: 500px;
}

.commands-copy-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  cursor: pointer;
  padding: 5px;
  letter-spacing: 0.2rem !important;
}

.features-command:hover .commands-copy-btn {
  display: block !important;
}

/* price section  */
.section-price-item {
  background-color: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(5px);
  transition: all 0.2s;
  width: 100%;
}

.my-atropos {
  max-width: 300px;
  margin: auto;
}
.atropos:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.atropos:hover .btn {
  background-color: #0d6efd !important;
  color: #fff !important;
}

.one-month {
  -webkit-box-shadow: inset -30px -30px 58px -36px rgba(206, 134, 64, 0.6);
  -moz-box-shadow: inset -30px -30px 58px -36px rgba(206, 134, 64, 0.6);
  box-shadow: inset -30px -30px 58px -36px rgba(206, 134, 64, 0.6);
}

.atropos:hover .one-month {
  -webkit-box-shadow: inset -55px -55px 58px -36px rgba(206, 134, 64, 0.6);
  -moz-box-shadow: inset -55px -55px 58px -36px rgba(206, 134, 64, 0.6);
  box-shadow: inset -55px -55px 58px -36px rgba(206, 134, 64, 0.6);
}

.three-month {
  -webkit-box-shadow: inset -30px -30px 58px -36px #7ca59e;
  -moz-box-shadow: inset -30px -30px 58px -36px #7ca59e;
  box-shadow: inset -30px -30px 58px -36px #76aaaa;
}

.atropos:hover .three-month {
  -webkit-box-shadow: inset -55px -55px 58px -36px #7ca59e;
  -moz-box-shadow: inset -55px -55px 58px -36px #7ca59e;
  box-shadow: inset -55px -55px 58px -36px #7ca59e;
}

.six-month {
  -webkit-box-shadow: inset -30px -30px 58px -36px #e2c95b;
  -moz-box-shadow: inset -30px -30px 58px -36px #e2c95b;
  box-shadow: inset -30px -30px 58px -36px #e2c95b;
}

.atropos:hover .six-month {
  -webkit-box-shadow: inset -55px -55px 58px -36px #e2c95b;
  -moz-box-shadow: inset -55px -55px 58px -36px #e2c95b;
  box-shadow: inset -55px -55px 58px -36px #e2c95b;
}

.nine-month {
  -webkit-box-shadow: inset -30px -30px 58px -36px #7fba7a;
  -moz-box-shadow: inset -30px -30px 58px -36px #7fba7a;
  box-shadow: inset -30px -30px 58px -36px #79bb73;
}

.atropos:hover .nine-month {
  -webkit-box-shadow: inset -55px -55px 58px -36px #7fba7a;
  -moz-box-shadow: inset -55px -55px 58px -36px #7fba7a;
  box-shadow: inset -55px -55px 58px -36px #7fba7a;
}

.one-years {
  -webkit-box-shadow: inset -30px -30px 58px -36px #d844e4;
  -moz-box-shadow: inset -30px -30px 58px -36px #d844e4;
  box-shadow: inset -30px -30px 58px -36px #d844e4;
}

.atropos:hover .one-years {
  -webkit-box-shadow: inset -55px -55px 58px -36px #d844e4;
  -moz-box-shadow: inset -55px -55px 58px -36px #d844e4;
  box-shadow: inset -55px -55px 58px -36px #d844e4;
}

.section-price-title strong,
#features strong {
  background-color: hsla(0, 0%, 100%, 0.7);
}

.section-price-title {
  max-width: 450px;
}

.section-price-title p {
  opacity: 0.7;
}

.section-price-item {
  position: relative;
}

.section-price-item span {
  position: absolute;
  top: -10px;
  right: 0;
}

/* invite section  */
.section-invite .btn {
  color: #ffffff;
  border: 2px solid #fff;
}

.section-invite .btn:hover {
  color: #fff;
  background-color: #ac62f7;
  border: 2px solid #ac62f7;
}

/* footer   */

footer {
  background-image: url(/assets/imgs/body-bg.jpg);
  background-color: rgba(26, 26, 26, 0.9);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.footer-copyright img {
  max-width: 250px;
}

.footer-copyright p,
.footer-copyright span {
  opacity: 0.8;
}

.footer-links ul li {
  transition: all 0.3s;
  opacity: 0.6;
}

.footer-links ul li:hover {
  transform: scale(1.07);
  background-image: linear-gradient(
    90deg,
    rgba(199, 114, 148, 1) 50%,
    rgba(152, 70, 233, 1) 90%
  );
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  opacity: 0.9;
}

@media screen and (min-width: 340px) {
  .navigation {
    border-radius: 0 0 0 15px;
  }

  .header-left-content h1 {
    font-size: 45px;
  }

  .logo {
    width: 70px;
    height: 70px;
  }
}

@media screen and (min-width: 768px) {
  .containers-max-width {
    max-width: 650px;
  }
  .section-price-item {
    max-width: unset;
  }
}

@media screen and (min-width: 992px) {
  .containers-max-width {
    max-width: unset;
  }

  .section-price-item {
    width: 220px;
  }

  .footer-copyright,
  .footer-links {
    width: 50%;
  }
}

@media screen and (min-width: 1180px) {
  .containers-max-width {
    max-width: 1280px;
  }
}
