.hero-section-container {
  box-sizing: border-box;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  background: url('/wp-content/themes/onegamespace/assets/img/hero-background.webp') no-repeat center center / 1200px;
}

@keyframes pulseGlow {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: rotate(360deg) scale(1.05);
    opacity: 1;
  }
}

.hero-section {
  background: rgba(10, 10, 20, 0.8);
  border: 3px solid #0ff;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 600px;
  width: 100%;
  color: #0ff;
  box-shadow:
    0 0 15px #0ff,
    inset 0 0 30px #0ff,
    0 0 40px #f0f, 
    inset 0 0 60px #f0f;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-section h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #ff00ff;
  text-shadow:
    0 0 5px #ff00ff,
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 40px #ff00ff;
  letter-spacing: 2px;
}

.hero-offer {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #0ff;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff;
}

#offer-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

#offer-form input[type="email"] {
  box-sizing: border-box;
  font-size: 1rem;
  padding: 14px 20px;
  max-width: 280px;
  width: 100%;
  border: 2px solid #ff00ff;
  border-radius: 8px;
  background-color: #1a1a2e;
  box-shadow: 0 0 10px #0ff inset;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

#offer-form input[type="email"]:focus {
  outline: none;
  border-color: #ff00ff;
  background-color: #331a4d;
  box-shadow:
    0 0 20px #ff00ff,
    inset 0 0 20px #ff00ff;
  color: #fff;
}

.hero-btn-retro {
  font-size: 1rem;
  padding: 14px 26px;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  color: #000;
  cursor: pointer;
  text-shadow: 0 0 8px #00ffff;
  box-shadow:
    0 0 15px #ff00ff,
    0 0 20px #00ffff;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.hero-btn-retro:hover {
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: #fff;
  box-shadow:
    0 0 25px #ff00ff,
    0 0 30px #00ffff,
    0 0 40px #ff00ff;
}

#thank-you-message {
  font-size: 1.1rem;
  color: #ff00ff;
  margin-top: 30px;
  text-shadow:
    0 0 8px #ff00ff,
    0 0 15px #ff00ff;
}
@media (max-width: 600px) {
  .hero-section-container {

  padding: 60px 0;
 
}

.hero-section {
  padding: 20px;
}

}