body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  background-color: #000;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  z-index: 3;
}

.logo {
  width: 320px;
  max-width: 90%;
  margin-bottom: 40px;
}

#contact-form {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
  max-width: 500px;
  width: 90%;
  margin: 100px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00ff88;
  border-radius: 10px;
  box-sizing: border-box;
}

#contact-form.show {
  opacity: 1;
  transform: translateY(0);
}

#contact-form h2 {
  margin-bottom: 20px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #00ff88;
  border-radius: 5px;
  background: #000;
  color: #00ff88;
  font-size: 1rem;
  box-sizing: border-box;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #00ff88;
  opacity: 0.6;
}

#contact-form button {
  padding: 12px 24px;
  background-color: #00ff88;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
}

#contact-form button:hover {
  background-color: #00ffaa;
}
.logo {
  width: 60vw;
  max-width: 600px;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transform-origin: center top;
  display: block;
  margin: 0 auto;
}

.logo.shrink-away {
  transform: scale(0);
  opacity: 0;
}
.coming-soon.shrink-away {
  transform: scale(0);
  opacity: 0;
}
.revolution.show {
  opacity: 1;
  transform: translateY(0);
}

#contact-form {
  transform: translateY(100px);
  opacity: 0;
  transition: all 1s ease;
}

#contact-form.show {
  transform: translateY(0);
  opacity: 1;
}


.logo {
  background-color: transparent !important;
  /* Optional: */
  mix-blend-mode: screen; /* Only if you want light-style blending */
}
.revolution {
  margin-bottom: 80px;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background: #000;
  border: 2px solid #00ff88;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #00ff88;
  font-size: 1.2rem;
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #00ff88;
  border: none;
  border-radius: 5px;
  color: #000;
  cursor: pointer;
  font-weight: bold;
}
