* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
  background: #0f2027;
}

/* Animated Gradient Background */
.background {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  z-index: -1;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Coming Soon Section */
.coming-soon {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Glassmorphism Box */
.glass-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-box h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.glass-box p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Status Text */
.status span {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.2);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.brand {
  font-size: 13px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
  .glass-box {
    padding: 40px 25px;
  }

  .glass-box h1 {
    font-size: 32px;
  }
}
