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

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* Floating background orbs */
.bg-animation span {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 12s infinite linear;
}

.bg-animation span:nth-child(1) {
  top: 10%;
  left: 20%;
}

.bg-animation span:nth-child(2) {
  top: 70%;
  left: 60%;
  animation-duration: 16s;
}

.bg-animation span:nth-child(3) {
  top: 40%;
  left: 80%;
  animation-duration: 20s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}

/* Card */
.container {
  z-index: 1;
  padding: 20px;
}

.card {
  max-width: 420px;
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: fadeUp 1.5s ease;
}

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

.logo {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f5ff, #fcd37a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.typing {
  font-size: 1.3rem;
  min-height: 1.6em;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
}

.divider {
  width: 60px;
  height: 3px;
  background: #fcd37a;
  margin: 25px auto;
  border-radius: 50px;
}

.notify {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 480px) {
  .logo {
    font-size: 2.2rem;
  }
  .card {
    padding: 30px 20px;
  }
}
.footer {
  position: fixed;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.footer span {
  color: #fcd37a;
}
.blog-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #fcd37a;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.blog-link:hover {
  text-decoration: underline;
  color: #ffeea6;
}
