@tailwind base;
@tailwind components;
@tailwind utilities;

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

@font-face {
  font-family: NewakeFont;
  src: url(/assets/font/NewakeFont-Demo.otf);
}

h2,
h1 {
  font-family: NewakeFont;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #020e30;
  overflow-x: hidden;
}

p {
  font-size: 1.2vw;
}

/* - ======================== Loading overlay ============================*/
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#fluid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
}

/* Loader animation */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.coins {
  display: flex;
  align-items: start;
  gap: 5vw;
  justify-content: center;
}

.coins .iner_1 {
  position: relative;
}

.coins .iner_1 .layar_1 {
  width: 12vw;
}

.coins .iner_1 .coin_1 {
  position: absolute;
  bottom: -5vw;
  width: 15vw;
  scale: 1.3;
  left: 0.5vw;
  animation: swing 2s ease-in-out infinite;
}

.coins .iner_2 {
  position: relative;
}

.coins .iner_2 .layar_2 {
  width: 25vw;
}

.coins .iner_2 .coin_2 {
  position: absolute;
  bottom: -5vw;
  width: 25vw;
  scale: 1.3;
  left: 1.5vw;
  animation: swing 2s ease-in-out infinite;
}

.coin {
  position: absolute;
  top: -50px;
  width: 8vw;
  animation: fall linear infinite;
  z-index: 999;
  left: 0;
}

@keyframes fall {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* header  */
.header {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.header {
  background-image: url("../images/header.png");
  height: 70vw;
  padding: 5vw;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw 5vw;
}

.links_absolute {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  top: 2vw;
  right: 2vw;
  position: absolute;
  z-index: 99;
}

.links_absolute img {
  width: 4vw;
  transition: all 0.3s ease-in-out;
}

.links_absolute .buy {
  width: 12vw;
}

.links_absolute img:hover {
  scale: 1.1;
}

.main {
  display: flex;
  justify-content: space-between;
  gap: 40vw;
}

.header .left,
.header .right {
  position: relative;
  z-index: 2;
}

.header .left .Ellipse {
  width: 40vw;
  height: 40vw;
  position: absolute;
  top: -10vw;
  z-index: -1;
  rotate: 12deg;
}

.header .right .Ellipse {
  width: 60vw;
  height: 40vw;
  position: absolute;
  top: -10vw;
  z-index: -1;
  rotate: 12deg;
  left: -5vw;
}

.main img {
  width: 12vw;
}

.main h1 {
  font-size: 4vw;
  line-height: 4vw;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #020e30;
  margin-bottom: 2vw;
}

.main h2 {
  font-size: 3vw;
  line-height: 3vw;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #020e30;
  margin-bottom: 2vw;
}

.main p {
  margin-bottom: 2vw;
}

marquee {
  background-image: linear-gradient(
    to right,
    #1b73da,
    #009bf6,
    #00bded,
    #00d9c5,
    #00ef8e,
    #8be85b,
    #cadc33,
    #ffcb27,
    #ffa042,
    #ff7276,
    #ff53b5,
    #f961f4
  );
  font-size: 2vw;
  font-weight: 600;
  padding: 1vw 0;
}

.header_sec {
  background-image: linear-gradient(
    to right,
    #1b73da,
    #009bf6,
    #00bded,
    #00d9c5,
    #00ef8e,
    #8be85b,
    #cadc33,
    #ffcb27,
    #ffa042,
    #ff7276,
    #ff53b5,
    #f961f4
  );
  padding: 1px;
  width: 80%;
  margin: auto;
  border-radius: 12px;
  transform: translateY(-10vw);
  position: relative;
  background-size: 300% 100%;
  animation: gradientShift 5s linear infinite;
}

.header_sec .inner {
  padding: 2vw 5vw;
  background-color: #010921;
  text-align: center;
  position: relative;
  z-index: 99;
  border-radius: 12px;
}

.header_sec .inner img {
  width: 12vw;
  height: 12vw;
  margin: auto;
  animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.header_sec .inner p {
  opacity: 0.8;
}

.header_sec .eth_1 {
  position: absolute;
  width: 10vw;
  z-index: 999;
  bottom: -5vw;
  left: -4vw;
  animation: rotateLeftRight 2s ease-in-out infinite;
}

.header_sec .eth_2 {
  position: absolute;
  width: 10vw;
  z-index: 999;
  bottom: 5vw;
  right: -4vw;
  rotate: 10deg;
  animation: rotateLeftRight 2s ease-in-out infinite;
}

@keyframes rotateLeftRight {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.animated-element {
  animation: rotateLeftRight 2s ease-in-out infinite;
}

.about {
  padding: 5vw 10vw;
  position: relative;
}

.about .elips_2 {
  position: absolute;
  top: -10vw;
  left: 0;
  z-index: -1;
}

.about span {
  padding: 0.5vw 1vw;
  background: linear-gradient(90deg, #1b73da, #dfff46, #f961f4, #1b73da);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #ffffff1f;
  border-radius: 3vw;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1vw;
  width: fit-content;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 100% 0; /* Start from the right */
  }
  100% {
    background-position: 0% 0; /* Move to the left */
  }
}

.about h1 {
  font-size: 7vw;
  color: #d9d9d9;
}

.about p {
  color: #8198da;
  margin-bottom: 2vw;
}

.about .buy {
  width: 12vw;
  transition: all 0.3s ease-in-out;
}

.about .buy:hover {
  scale: 1.1;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.about .main {
  animation: bounce 3s ease-in-out infinite;
}

.tokenomice {
  padding: 3vw 8vw;
  text-align: center;
  position: relative;
}

.tokenomice h1 {
  text-align: center;
  font-size: 5vw;
  background: linear-gradient(90deg, #1b73da, #dfff46, #f961f4, #1b73da);
  background-size: 300% 100%;
  animation: gradientShift 5s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3vw;
}

.tokenomice img {
  width: 30vw;
  height: 30vw;
  object-fit: contain;
  animation: flipLeftRight 4s infinite ease-in-out;
  transform-style: preserve-3d;
}

.tokenomice .tok_2 {
  animation: flipLeftRight 6s infinite ease-in-out;
  transform-style: preserve-3d;
}
.tokenomice .tok_3 {
  animation: flipLeftRight 8s infinite ease-in-out;
  transform-style: preserve-3d;
}

.tokenomice p {
  padding: 0.7vw;
  border-radius: 2vw;
  background-color: #ffffff1a;
}

.tokenomice .eth_1 {
  position: absolute;
  width: 15vw;
  z-index: 999;
  top: -2vw;
  left: 5vw;
  animation: rotateLeftRight 2s ease-in-out infinite;
}

@keyframes flipLeftRight {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0);
  }
}

.bg_color {
  background-image: linear-gradient(to bottom, #071c5673, #020e3000);
  margin-top: 5vw;
}

.roadmap {
  padding: 7vw;
  position: relative;
}

.roadmap h1 {
  text-align: center;
  font-size: 5vw;
  background: linear-gradient(90deg, #1b73da, #dfff46, #f961f4, #1b73da);
  background-size: 300% 100%;
  animation: gradientShift 5s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.roadmap p {
  text-align: center;
  margin-bottom: 2vw;
}

.roadmap .buy {
  width: 12vw;
  margin: auto;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10vw;
}

.roadmap .buy:hover {
  scale: 1.1;
}

.roadmap .box_1,
.roadmap .box_2,
.roadmap .box_3,
.roadmap .box_4 {
  box-shadow: #083b58ec 0px 4px 18px 0px inset;
  border: 1px solid #ffffff1a;
  padding: 3vw 2vw;
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Blur effect */
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1vw;
  height: fit-content;
  position: relative;
  z-index: 99;
  height: 15vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roadmap .box_1 h2,
.roadmap .box_2 h2,
.roadmap .box_3 h2,
.roadmap .box_4 h2 {
  font-size: 2vw;
}

.roadmap .box_1 h5,
.roadmap .box_2 h5,
.roadmap .box_3 h5,
.roadmap .box_4 h5 {
  opacity: 0.8;
}

.roadmap .box_1 img,
.roadmap .box_2 img,
.roadmap .box_3 img,
.roadmap .box_4 img {
  width: 4vw;
}

.roadmap .box_1 {
  rotate: -10deg;
  margin-top: 8vw;
}

.roadmap .box_2 {
  rotate: 5deg;
  scale: 1.1;
}

.roadmap .box_3 {
  rotate: 0;
  scale: 1.1;
  margin-top: 5vw;
}

.roadmap .box_4 {
  rotate: 10deg;
  scale: 1.1;
}

.roadmap_img {
  margin-top: -28vw;
  animation: flipLeftRight 4s infinite ease-in-out;
}

.roadmap .eth_1 {
  position: absolute;
  width: 10vw;
  z-index: 999;
  top: 15vw;
  left: 5vw;
  animation: rotateLeftRight 2s ease-in-out infinite;
}

.roadmap .eth_2 {
  position: absolute;
  width: 10vw;
  z-index: 999;
  top: -5vw;
  right: 5vw;
  rotate: 10deg;
  animation: rotateLeftRight 2s ease-in-out infinite;
}

.meme {
  background-image: linear-gradient(
    to right,
    #1b73da,
    #009bf6,
    #00bded,
    #00d9c5,
    #00ef8e,
    #8be85b,
    #cadc33,
    #ffcb27,
    #ffa042,
    #ff7276,
    #ff53b5,
    #f961f4
  );
  padding: 2px;
  width: 83%;
  margin: auto;
  border-radius: 12px;
  position: relative;
  background-size: 300% 100%;
  animation: gradientShift 5s linear infinite;
}

.meme .inner {
  padding: 2vw 5vw;
  background-color: #010921;
  text-align: center;
  position: relative;
  z-index: 99;
  border-radius: 12px;
}

.meme .inner span {
  padding: 0.5vw 2vw;
  background: linear-gradient(90deg, #1b73da, #dfff46, #f961f4, #1b73da);
  background-size: 300% 100%; /* Increase the background size to allow for animation */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #ffffff1f;
  border-radius: 3vw;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1vw;
  width: fit-content;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 100% 0; /* Start from the right */
  }
  100% {
    background-position: 0% 0; /* Move to the left */
  }
}

.meme .inner h1 {
  font-size: 5vw;
  line-height: 6vw;
  color: #d9d9d9;
  text-align: start;
  background: linear-gradient(90deg, #fff, #1b73da, #dfff46, #f961f4, #1b73da);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  animation: gradientShift 5s linear infinite;
}

.meme .inner p {
  color: #8198da;
  margin-bottom: 2vw;
  text-align: start;
}

/* join  */
.join {
  margin-top: -20vw;
  position: relative;
  z-index: 99;
}

.join .cato {
  position: absolute;
  top: -20vw;
  width: 20vw;
  left: 8vw;
  animation: bounce 3s ease-in-out infinite;
}

.join .eth_1 {
  position: absolute;
  width: 12vw;
  z-index: 999;
  top: -5vw;
  right: 10vw;
  animation: rotateLeftRight 2s ease-in-out infinite;
}

footer {
  margin-top: -29vw;
  position: relative;
}

footer p {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Blur effect */
  -webkit-backdrop-filter: blur(10px);
  padding: 1vw;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  color: #000000;
}
