* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  color: white;
  text-align: center;
  overflow: hidden;
}

.container {
  padding: 40px;
  max-width: 700px;
  animation: fadeIn 1.5s ease;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #38bdf8;
  margin-bottom: 15px;
}

.slogan {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #f8fafc;
}

.coming-soon {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 25px;
}

.btn {
  padding: 14px 28px;
  background: #38bdf8;
  color: #0f172a;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: #0ea5e9;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(56, 189, 248, 0.18);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.glow.one {
  top: 10%;
  left: 10%;
}

.glow.two {
  bottom: 10%;
  right: 10%;
}