/* Base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: black;
  overflow: hidden;
  color: #00f0ff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.coming-soon-container {
  text-align: center;
  z-index: 1;
  position: relative;
  max-width: 800px;
  padding: 40px;
  animation: fadeIn 2s ease-out;
}

.typewriter-glow {
  font-size: 3rem;
  color: #00f0ff;
  border-right: 3px solid #00f0ff;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink 0.8s step-end infinite;
text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff;
}

.subtitle {
  font-size: 1.2rem;
  color: #ffffffb2;
  margin-top: 20px;
  animation: fadeInUp 2s ease-in-out;
}

.btn-back {
  margin-top: 40px;
  display: inline-block;
  background-color: #00f0ff;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-back:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #00f0ff;
}

/* Animations */
@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #00f0ff; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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