@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #081a2f, #0f2d4a);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.content {
  max-width: 620px;
  width: 100%;
  text-align: center;
  padding: 20px;
}

/* Canvas */
#bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}

/* Overlay gradient */
.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(77,208,225,0.15), transparent 60%);
  z-index: -1;
}

/* Glass Card */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: floatIn 2s ease forwards;
}

.logo {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tagline {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #cfe9f4;
}

/* Divider */
.divider {
  display: block;
  width: 90px;
  height: 4px;
  margin: 35px auto;
  background: linear-gradient(90deg, #1e88e5, #4dd0e1);
  border-radius: 10px;
  animation: pulse 1.8s ease-in-out infinite;
}

/* Text */
.coming {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.subtext {
  font-size: 1rem;
  line-height: 1.7;
  color: #e3f2fd;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 38px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1e88e5, #4dd0e1);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 35px rgba(30, 136, 229, 0.45);
}

.btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(77, 208, 225, 0.6);
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* Responsive */
@media (max-width: 600px) {
  .glass {
    padding: 45px 25px;
  }

  .logo {
    font-size: 2rem;
  }

  .coming {
    font-size: 1.8rem;
  }
}
