body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.logo {
  width: 280px;
  animation: fadeIn 2s ease-in-out;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #FFD700;
  animation: fadeIn 3s ease-in-out;
}

.coming-soon {
  font-size: 2.5rem;
  margin: 1.5rem 0;
  color: #FFD700;
  animation: fadeIn 4s ease-in-out;
}

.contact-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background-color: transparent;
  border: 1px solid #FFD700;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #FFD700;
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
