@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  background: radial-gradient(circle at top, #0a0f1f, #02040a);
  color: #00e6ff;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  text-align: center;
  overflow: hidden;
}

.container {
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 180px;
  filter: drop-shadow(0 0 20px #00e6ff);
  animation: pulse 3s infinite alternate;
}

h1 {
  font-size: 3em;
  color: #00ffff;
  text-shadow: 0 0 20px #00e6ff, 0 0 40px #008cff;
  margin-top: 0.5em;
}

.tagline {
  color: #9ae0ff;
  font-size: 1.2em;
  margin-bottom: 2em;
}

.neon-line {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #008cff, #00ffff);
  margin: 0 auto 2em;
  border-radius: 2px;
  box-shadow: 0 0 15px #00e6ff;
  animation: flicker 2s infinite;
}

.coming-soon {
  font-size: 1.5em;
  color: #ffffffcc;
  text-shadow: 0 0 10px #00e6ff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.6; }
}