@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
}

header {
  padding: 20px 50px;
  text-align: left;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: gold;
  letter-spacing: 2px;
  text-shadow: 0 0 8px gold, 0 0 12px #ffcc00;
  animation: glowPulse 2.5s infinite alternate;
}

h1 {
  font-size: 38px;
  letter-spacing: 3px;
  margin-top: 100px;
}

.slogan {
  font-size: 16px;
  color: gold;
  margin: 10px 0;
}

.tagline {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

form input {
  padding: 10px 15px;
  width: 250px;
  border: none;
  border-radius: 4px;
}

.glow-btn {
  padding: 10px 20px;
  background: gold;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 0 15px gold;
  transition: 0.3s;
  animation: buttonGlow 2s infinite alternate;
}

.glow-btn:hover {
  background: #ffdb58;
  transform: scale(1.05);
}

.socials {
  margin-top: 30px;
  font-size: 16px;
}

.socials a {
  color: gold;
  text-decoration: none;
}

footer {
  margin-top: 80px;
  font-size: 12px;
  color: #666;
}

/* ✨ Glow Animations */
@keyframes glowPulse {
  from { text-shadow: 0 0 8px gold; }
  to { text-shadow: 0 0 20px gold, 0 0 40px #ffcc00; }
}

@keyframes buttonGlow {
  from { box-shadow: 0 0 5px gold; }
  to { box-shadow: 0 0 20px gold, 0 0 40px #ffcc00; }
}
