* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  max-width: 700px;
  padding: 40px;
}

.logo {
  width: 220px;
  margin-bottom: 40px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

p {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.loader {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.loader span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #38bdf8;
  animation: bounce 0.6s infinite alternate;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.5;
  }
  to {
    transform: translateY(-15px);
    opacity: 1;
  }
}

.contact {
  margin-top: 30px;
  color: #cbd5e1;
}

.contact a {
  color: #7dd3fc;
  text-decoration: none;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #94a3b8;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 10s linear infinite;
}

.circle:nth-child(1) {
  width: 300px;
  height: 300px;
  left: -120px;
  top: -120px;
}

.circle:nth-child(2) {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -80px;
}

@keyframes float {
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1rem;
  }
}
