

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --jakarta-font: "Plus Jakarta Sans", sans-serif;
  --mono-font: "Roboto Mono", monospace;
}

.jakarta {
  font-family: var(--jakarta-font);
}

.monospace {
  font-family: var(--mono-font);
}

.hero-shadow {
  box-shadow: 2px 2px 2px #0046c86d;
}

@keyframes gradient-glow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.glow-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(90deg,
      #fff,
      #0042bcc7,
      #fff);
  background-size: 300% 300%;
  animation: gradient-glow 6s ease infinite;
  filter: blur(8px);
  opacity: 0.8;
  z-index: 1;
}

/* hero btn */
.hero-btn {
  /* font-size: 1.4em; */
  padding: 0.2em 0.6em;
  /* border-radius: 0.5em; */
  border: none;
  background-color: #000;
  /* color: #fff; */
  cursor: pointer;
  /* box-shadow: 2px 2px 3px #000000b4;   */
}

.hero-btn-container {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, #0046c86d, #fff);
  border-radius: 0.9em;
  transition: all 0.4s ease;
}

.hero-btn-container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.hero-btn-container:hover::before {
  background: linear-gradient(90deg, #0046c86d, #fff);
  filter: blur(1.2em);
}

.hero-btn-container:active::before {
  filter: blur(0.2em);
}

/* sparkels-btn */
.fx-btn {
  color: #fff;
  box-shadow: 0 0 24px rgba(57, 90, 255, 0.4);
  transition: all 0.5s;
}

.fx-btn:hover {
  box-shadow: 0px 0px 8px 0px #0046c86d;
  background: linear-gradient(180deg, #000, #0046c86d);
}

.sparkle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  bottom: -20px;
  animation: sparkle-fly linear forwards;
}

.s__blur {
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(3px);
  position: relative;
  z-index: 1;
  left: -5px;
}

.s__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.8),
      transparent);
  border-radius: 1px;
  margin-top: -7px;
  position: relative;
  z-index: 2;
}

@keyframes sparkle-fly {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(-160%);
    opacity: 0;
  }
}

/* home page */
.ticker-div {
  position: relative;
}

.tradingview-widget-container::before,
.tradingview-widget-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 350px;
  height: 100%;
  z-index: 10;
}

.tradingview-widget-container::before {
  left: 0;
  background: linear-gradient(to left, #02061800, #00091d)
}

.tradingview-widget-copyright {
  display: none;
}

.tradingview-widget-container::after {
  right: 0;
  background: linear-gradient(to right, #02061803, #00091d);
}

.community-h::before {
  content: '';
  width: 150px;
  height: 25px;
  position: absolute;
  left: -5px;
  top: -5px;
  background: rgba(0, 70, 200, 0.427);
  filter: blur(30px);
  transform: rotate(33.01deg);
}

.flag-h::before {
  content: '';
  width: 150px;
  height: 25px;
  position: absolute;
  right: -5px;
  top: -5px;
  background: rgba(0, 70, 200, 0.427);
  filter: blur(30px);
  transform: rotate(33.01deg);
}

.bg-bottom {
  opacity: 0.15;
  background: rgba(0, 70, 200, 1);
  mix-blend-mode: lighten;
  filter: blur(30px);
  z-index: -10;
}

.steps-box {
  box-shadow: 0px 0px 8px 0px #0046c86d;
  background: linear-gradient(171deg, #130c1b, #160c20 29%, #0046c86d);
}

.text--number-big {
  /* font-weight: 700; */
  /* position: absolute; */
  inset: 0% 18% 0% auto;
}

.hero-section {
  background-image: url('./images/hero-space.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
