* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background-color: black;
  overflow: hidden;
}

.star-bg {
  background: url('images/starfield.gif') no-repeat center center fixed;
  background-size: cover;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
}

.content {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #a855f7, #ec4899, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.countdown span {
  display: block;
  font-size: 2.5rem;
  color: #facc15;
}

.contact {
  font-size: 1rem;
  color: #f3f3f3;
  margin-top: 20px;
  line-height: 1.6;
}

.contact a {
  color: #facc15;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

.astro-icons {
  margin-top: 30px;
  font-size: 2rem;
  color: #ffda77;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
