* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* ---------- BACKGROUND BLOBS ---------- */
.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg span {
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(130px);
  animation: float 22s infinite ease-in-out;
}

.bg span:nth-child(1) {
  background: rgba(99,102,241,0.18);
  top: 10%;
  left: 15%;
}

.bg span:nth-child(2) {
  background: rgba(168,85,247,0.18);
  top: 65%;
  left: 45%;
  animation-duration: 26s;
}

.bg span:nth-child(3) {
  background: rgba(56,189,248,0.18);
  top: 30%;
  left: 75%;
  animation-duration: 30s;
}

@keyframes float {
  0% { transform: translate(0,0); }
  50% { transform: translate(-80px,-120px); }
  100% { transform: translate(0,0); }
}

/* ---------- CENTER CONTENT ---------- */
.center {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* NAME ANIMATION */
.name {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #e5e7eb;
  opacity: 0;
  transform: scale(0.9);
  animation: reveal 1.8s ease-out forwards;
  transition: all 0.4s ease;
  text-shadow: 0 0 25px rgba(99,102,241,0.5);
}

/* Hover effect on name */
.name:hover {
  transform: scale(1.08) translateY(-6px);
  text-shadow:
    0 0 40px rgba(99,102,241,1),
    0 0 80px rgba(168,85,247,0.7);
}

/* Reveal animation */
@keyframes reveal {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- LINKS ---------- */
.links {
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 1.2s;
}

.links a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.links a:hover {
  color: #e5e7eb;
  text-shadow: 0 0 20px rgba(99,102,241,0.9);
  transform: translateY(-2px);
}

.dot {
  color: #475569;
  margin: 0 6px;
}

/* Fade-up for links */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px) {
  .name {
    font-size: 2.6rem;
  }
}
/* ---------- COMING SOON ---------- */
.coming {
  margin-top: 16px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #64748b;
  opacity: 0;
  animation: pulseFade 2.5s ease-in-out infinite,
             fadeUp 1.2s ease forwards;
  animation-delay: 1.6s;
}

/* Soft pulse */
@keyframes pulseFade {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

