/* style.css */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  text-shadow: 0 0 20px #ffcc00;
  animation: glow 2s infinite alternate;
}

.content p {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.content h2 {
  font-size: 2em;
  font-weight: bold;
  text-shadow: 0 0 15px #00ccff;
}

#countdown {
  margin-top: 1em;
  font-size: 1.2em;
  text-shadow: 0 0 10px #00ffcc;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ffcc00; }
  to { text-shadow: 0 0 30px #ff6600; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
