body {
  margin: 0;
  font-family: Montserrat, sans-serif;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
}

.hero {
  text-align: center;
  padding: 30px 20px;
}

h1 {
  font-size: 5.5em;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 20px #F9C700;
  color: #F9C700; !important
}

p {
  font-size: 3.5em;
  font-weight: bold;
  margin: 20px 0;
  text-shadow: 0 0 10px #F9C700;
  color: #F9C700; !important
}

.pepeu-image img {
  width: 200px;
  max-width: 50%;
  margin: 30px 0;
}

.deploying-text {
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #F9C700;
}

.progress-bar {
  background-color: #000;
  border: 3px solid #ffc52b;
  border-radius: 40px;
  padding: 4px;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 15px #ffc52b;
}

.progress {
  background: linear-gradient(to right, #3f97ff, #005aff);
  height: 20px;
  border-radius: 30px;
  width: 100%; /* Change this to control progress */
  transition: width 0.5s ease;
  box-shadow: inset 0 0 10px #0044cc, 0 0 8px #0044cc;
}
.progress {
  background: linear-gradient(90deg, #3f97ff, #005aff);
  background-size: 200% 100%;
  animation: moveGradient 5s linear infinite;
}

@keyframes moveGradient {
  100% { background-position: 0% 0%; }
  0% { background-position: 200% 0%; }
}


.notify-text {
  font-size: 1.1em;
  margin-top: 20px;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.email-form input {
  padding: 10px 15px;
  border: 2px solid #ffd64f;
  border-radius: 25px;
  background: #0c1c30;
  color: #fff;
  font-size: 1em;
  max-width: 250px;
  width: 60%;
}

.email-form button {
  padding: 10px 20px;
  background-color: #ffd64f;
  border: none;
  border-radius: 25px;
  font-size: .8em;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.email-form button:hover {
  background-color: #ffed9a;
}

@media(max-width: 600px) {
  h1 {
    font-size: 2.2 em;
  }

  .pepeu-image img {
    width: 150px;
  }
  p, .deploying-text, .notify-text {
    font-size: 1.2em;
  }
}
