body {
  font-family: "Source Sans Pro", "SanFranciscoText-Regular", -apple-system, BlinkMacSystemFont, "Verdana";
  font-size: 1.5em;
  font-weight: 100;
  color: rgba(255,255,255,0.85);
  margin: 0;
  padding: 0;
}
.content {
  z-index: 10;
  position: absolute;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  overflow-x: hidden;
  overflow-y: scroll;
}
.content .container {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  width: 800px;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.content .header {
  padding: 2em 5em 3em 5em;
}
.content .header img {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 300px;
}
.header_nav {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  gap: 10px;
  margin-top: 0px;
  align-self: start;
  font-size: 14pt;
  font-weight: 300;
  line-height: 1.65;
}
.header_nav img {
  width: 200px;
}

.header_nav a, .header_nav a:first-child:hover {
  border-bottom: none;
  color: white;
}

.header_nav a:hover, .header_nav a.active {
  border-bottom: 1px solid white;
}

.header_nav span {
  color: #cccccc;
}

.header_nav a.active {
  font-weight: 400;
}
a {
  text-decoration: none;
}
p, ul, a {
  line-height: 2.4rem;
}
h1, h2, h3 {
  font-family: "SanFranciscoText-Regular", -apple-system, BlinkMacSystemFont, 'Helvetica Neue';
  font-weight: 300;
  color: white;
  margin: 0;
}
h1 {
  font-size: 72px;
  font-weight: 50;
}
h3 {
  font-size: 32px;
}
input, textarea {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  font-size: 1em;
  color: rgba(255,255,255,0.85);
}
.content .section_nav {
  position: sticky;
  z-index: 100;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(30px);
  width: 100%;
  padding: 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.content .section_nav a, input[type=Submit] {
  padding: 12px 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 26px;
  font-weight: 200;
}
.content .section_nav a:hover, input[type=Submit]:hover, .content .section_nav a.active {
  background-color: rgba(255, 255, 255, 0.3);
  border: 0.5px solid rgba(255, 255, 255, 0.35);
}
.content .grid {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
}
.content .grid .section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin-top: 80px;
}
.content .grid .section h1 {
  font-size: 56px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
  background-color: white;
}
.content .grid .section h1.peach {
  background-image: linear-gradient(to right, rgb(255, 80, 248), rgb(238, 192, 43));
}
.content .grid .section h1.green {
  background-image: linear-gradient(to right, #6BC470, #9DD846);
}
.content .grid .section h1.blue {
  background-image: linear-gradient(to right, #56cfff, #4FC4FF);
}
.content .grid .section h1.blueDark {
  background-image: linear-gradient(to right, #56a8ff, #4f9eff);
}
.content .grid .section h1.purple {
  background-image: linear-gradient(to right, #BF44FF, #E56EF7);
}
.content .grid .section h1.orange {
  background-image: linear-gradient(360deg, #ff7a00, rgb(228, 176, 8) 48.74%, #d3ff0a);
}
h1.app, .content .grid .section h1.app {
  text-align: center;
  margin: 0 auto;
  text-shadow: 1px 1px 1px black;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  font-weight: unset;
  background-color: unset;
}
.tokensContainer {
  background-color: rgba(0,0,0,0.5);
  box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
  padding: 40px 20px;
  border-radius: 20px;
}
.content .grid .section .tokensContainer .tokens {
  margin-top: 40px;
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
  font-size: 20px;
}
.content .grid .section .tokens svg {
  width: 100px;
  margin-bottom: 10px;
}
.content .grid .section .tokens h2 {
  color: rgba(255,255,255,0.8);
}

/* MOBILE STYLES */
@media (max-width: 1050px) {
  body {
    font-size: 1em;
  }

  .content .grid .section {
    max-width: 100vw;
  }

  .content .header {
    padding: 1em;
  }

  .content .header img {
    width: 180px;
    height: auto;
  }

  .header_nav, .content .section_nav {
    display: none;
  }

  .tokensContainer {
    padding: 20px 10px;
    border-radius: 0px;
  }

  .content .grid .section .tokensContainer .tokens {
    flex-direction: column;
    align-items: center;
  }

  .content .grid .section {
    margin-top: 40px;
    padding: 10px;
  }

  .content .grid .section h1 {
    font-size: 36px;
  }

  .content .grid .section img {
    width: 100% !important;
    height: auto !important;
  }

  .content .grid .section > div,
  .content .grid .section > div > div {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  #picking {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  #picking .image {
    display: none;
  }

  #buynow {
    margin: 0px;
    padding: 0px;
  }

  #buynow .tokensContainer {
    width: 100% !important;
  }

  #buynow img {
    width: 200px !important;
  }
}


:root {
  --color-bg1: rgb(108, 0, 162);
  --color-bg2: rgb(0, 17, 82);
  --color1: 18, 113, 255;
  --color2: 221, 74, 255;
  --color3: 100, 220, 255;
  --color4: 200, 50, 50;
  --color5: 180, 180, 50;
  --color-interactive: 140, 100, 255;
  --circle-size: 70%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}


.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;

  svg {
    position: fixed;
    top:0;
    left:0;
    width: 0;
    height: 0;
  }

  .gradients-container-full {
    filter: blur(20px);
  }

  .gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
  }

  .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: center center;
    animation: moveVertical 30s ease infinite;

    opacity: 0.8;
  }

  .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;

    opacity: 0.8;
  }

  .g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);

    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;

    opacity: 0.8;
  }

  .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);

    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;

    opacity: 0.5;
  }

  .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));

    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;

    opacity: 0.8;
  }

  .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);

    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;

    opacity: 0.5;
  }
}