* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.container {
  height: 100vh;
  width: 100%;
  background: linear-gradient(
    135deg,
    #0f172a,
    #1e293b,
    #2563eb
  );
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s infinite ease-in-out;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 40px;
}

.logo {
  font-size: 80px;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 30px;
}

.status-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 12px 24px;
  border-radius: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.dot {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.btn {
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  background: #ffffff;
  color: #2563eb;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  50% {
    transform: translate(100px, -50px);
  }
}