* {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Archivo Black';
    
}
@keyframes customBounce {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.about-logos {
    animation: customBounce 1.5s infinite;
}
/* Countdown Gradient Style */
#countdown span,
#launch-timer span,
#presale-countdown span {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(to right, cyan, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0 4px;
}
#refer code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.hidden { display: none; }
#referral {
  text-align: center;
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
  width: 80%;
  max-width: 500px;
}
#referral input {
  width: 70%;
  padding: 8px;
  margin: 10px 0;
}
#referral button {
  padding: 8px 15px;
  cursor: pointer;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
}
/* Signup Section */
#signup {
  text-align: center;
  margin: 40px auto;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 15px;       /* Rounded corners */
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2); /* Soft shadow */
}

#signup h2 {
  margin-bottom: 20px;
  color: #222;
}

#signup input {
  display: block;
  width: 90%;
  margin: 10px auto;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;      /* Rounded inputs */
  outline: none;
  transition: border 0.2s ease-in-out;
}

#signup input:focus {
  border: 1px solid #4CAF50;  /* Highlight on focus */
}

#signup button {
  margin-top: 15px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: #4CAF50;
  border: none;
  border-radius: 10px;       /* Rounded button */
  cursor: pointer;
  transition: background 0.3s ease;
}

#signup button:hover {
  background: #45a049;
}

#signup p {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}
