
body {
  margin: 0;
  padding: 0;
  background: #0b0b0b;
  color: #f1f1f1;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}
.container {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 2s ease forwards;
}
.coin {
  max-width: 200px;
  margin-bottom: 1.5rem;
  animation: glow 3s ease-in-out infinite alternate;
}
h1 {
  font-size: 2.8rem;
  margin: 0.5rem 0;
  letter-spacing: 2px;
}
.tagline {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 1rem;
}
.launch {
  font-size: 1rem;
  margin-top: 1rem;
  color: #ffcc00;
}
.countdown {
  font-size: 1.3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.btn {
  background: #ffcc00;
  color: #0b0b0b;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #e6b800;
}
.manifest {
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}
h2 {
  margin-bottom: 1rem;
}
.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}
.fade-in-delayed {
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
  animation-delay: 2s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px #ffcc00);
  }
  to {
    filter: drop-shadow(0 0 25px #ffcc00);
  }
}
