@font-face {
  font-family: 'pixel';
  src: url('./fonts/pixel.ttf') format('truetype');
}
body, html {
  height: 100%;
  margin: 0;
  font-family: pixel, sans-serif;
}
.header-banner {
  text-align: center;
  color: white;
  font-size: 28px;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  animation: bounceGlow 2s infinite;
  font-family: pixel, sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}

@keyframes bounceGlow {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  }
  40% {
      transform: translateY(-20px);
      text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.9);
  }
  60% {
      transform: translateY(-10px);
      text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 25px rgba(255, 255, 255, 0.8);
  }
}
.bg {
  background-image: url('images/background.png');
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.overlay {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.logo-container {
  width: 100%;
  text-align: center;
}
.logo {
  width: 10%;
  height: auto;
}
.overlay .overlay2 {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
}
h1 {
  color: white;
  font-size: 2em;
  text-align: center;
}
h2 {
  color: white;
  font-size: 2em;
  text-align: center;
}
h2 img {
  width: 65px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}
a {
  color: white;
  text-align: center;
  text-decoration: none;
}

.overlay div.buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  text-align: center;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  margin: 10px;
  border-radius: 20px;
  background-color: #00aaff;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-size: 16px;
  font-family: pixel, sans-serif;
}
.btn img {
  width: 35px;
  margin-right: 10px;
}
.btn:hover {
  transform: scale(1.1);
  background-color: #0088cc;
}

.overlay div.buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .btn {
      width: 100%;
  }
  .header-banner {
    display: none;
  }
}

#socials, #taxonomy, #tokenomics, #how-to-buy, #plan, #partners, #tools {
  display: none;
}

#socials a {
  margin: 0 15px;
}

.underline {
  text-decoration: underline;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
}
@keyframes popup-zoom-in {
  0% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
  }
  100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
}

@keyframes popup-zoom-out {
  0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
  100% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
  }
}
hr {
  border: 0;
  height: 1px;
  background: white;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  padding: 40px;
  border-radius: 10px;
  max-width: 80%;
  max-height: 80%;
  z-index: 1000;
  overflow: auto;
  animation: popup-zoom-in 0.3s ease-out;
  opacity: 1
}
.popup.closing {
  animation: popup-zoom-out 0.3s ease-in forwards;
}

.popup h2, .popup p, .popup ul {
  color: white;
}

.popup h2, .popup p, .popup ul {
  color: white;
}
.popup img.icon {
  max-width: 100px;
  background-color: black;
  border: 4px solid white;
  border-radius: 50%;
  padding: 5px;
  display: block;
  margin: 20px auto;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: black;
  border: 2px solid white;
  color: white;
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
footer {
  text-align: center;
  color: white;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}
.pulsating-text {
  text-align: center;
  color: white;
  font-size: 28px;
  font-family: pixel, sans-serif;
  animation: pulse 2s infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  padding: 20px;
  margin: 20px 0;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  }
  50% {
      transform: scale(1.1);
      text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.9);
  }
  100% {
      transform: scale(1);
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  }
}
