@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.rainbow-text {
  background: linear-gradient(90deg, #ff0080, #ff8c00, #40e0d0, #8a2be2, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: rainbow 4s linear infinite;
}

.subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.subtitle strong {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

.countdown h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.neon-glow {
  color: #0ff;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
}

.count-timer {
  font-size: 2rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.credits {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #ff69b4;
  text-shadow: 0 0 5px #ff69b4;
  z-index: 999;
  pointer-events: none;
}

@keyframes rainbow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}