@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

:root {
  --foreground-rgb: 255, 255, 255;
}

/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: rgba(255, 0, 0, 0.35) #0c0c0c;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 0.25rem;
}

*::-webkit-scrollbar-track {
  background: #0c0c0c;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 0, 0, 0.35);
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(255, 0, 0, 0.1);
}

body {
  color: rgb(var(--foreground-rgb));
  background: #0C0C0C;
  font-family: 'Montserrat', sans-serif;
}

.no-scroll {
  overflow: hidden;
}

#loader svg {
  width: 100px;
  height: 100px;
  
  animation: loader 2s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

#loader.done svg {  
  animation: none;
}

section:not(#hero, #features) {
  padding: 0 11.5625rem;
}

.btn {
  padding: .6rem 1.563rem;
  border-radius: 0.313rem;
  border: 0.063rem solid rgba(255, 0, 0, 0.2);
  background: rgba(255, 0, 0, 0.2);
  box-shadow: 0 0.25rem 0.563rem -0.125rem rgba(255, 255, 255, 0.13) inset, 0 0 0 0.063rem rgba(255, 0, 0, 0.17);
  width: fit-content;
  font-weight: 500;
  transition: transform .1s ease-in-out;
  z-index: 25;
}

.btn.discord {
  border-radius: 0.3125rem;
  border: 0.0625rem solid #f25858;
  
  background: rgba(242, 88, 88, 0.2);  
  box-shadow: none;
}

.btn:hover {
  cursor: pointer;
}

.btn:active {
  transform: translateY(1px);
  transition: transform .1s ease-in-out;
}

footer {
  padding: 1.875rem 11.5625rem;
  background-color: #151515;
}

footer .left svg {
  height: 1.875rem;
}

footer .links a {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;

  padding: 0.35rem 1.15rem;
  border-radius: 0.3125rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);

  width: fit-content;

  white-space: nowrap;
}

footer .payment img {
  width: 150px;
}

.copyright-footer {
  background: #0c0c0c;
  padding: 0.9375rem 11.5625rem;
}

@media (max-width: 1024px) {
    section:not(#hero, #features) {
        padding: 0 1.5625rem;
    }

    footer {
        padding: 1.875rem 1.5625rem;
        background-color: #151515;
    }

    .copyright-footer {
        background: #0c0c0c;
        padding: 0.9375rem 1.5625rem;
    }
}

@keyframes loader {
  0% {
    transform: scale(1);
  }
  
  50% {
    transform: scale(1.1);
  }
  
  100% {
    transform: scale(1);
  }
}