.launch-page {
  padding: 40px;
  text-align: center;
  color: white;
  font-family: 'Orbitron', sans-serif;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: backgroundShift 10s ease-in-out infinite;
}

.launch-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: titleGlow 2s ease-in-out infinite alternate;
}

.launch-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  min-width: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: scale(1.05);
}

.countdown-number {
  font-size: 3rem;
  font-weight: bold;
  display: block;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: numberPulse 1s ease-in-out infinite;
}

.countdown-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.launch-message {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.launch-message p {
  margin: 0;
  animation: messageFade 3s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes titleGlow {
  from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
  to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6); }
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes messageFade {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .launch-title {
    font-size: 2rem;
  }
  .countdown-container {
    gap: 10px;
  }
  .countdown-item {
    min-width: 80px;
    padding: 15px;
  }
  .countdown-number {
    font-size: 2rem;
  }
}
