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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at center, rgba(0, 180, 255, 0.14), transparent 35%),
    linear-gradient(135deg, #020b18, #03111f 45%, #010711);
  color: #ffffff;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 28px;
  background: rgba(4, 15, 29, 0.72);
  box-shadow: 0 0 45px rgba(0, 195, 255, 0.16);
  backdrop-filter: blur(10px);
}

.logo-box {
  margin-bottom: 30px;
}

.logo {
  width: min(460px, 90%);
  filter: drop-shadow(0 0 28px rgba(0, 195, 255, 0.42));
  animation: floating 4s ease-in-out infinite;
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.45);
  color: #72eaff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(36px, 7vw, 78px);
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #49e8ff, #1676ff, #d6f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(18px, 3vw, 28px);
  color: #d7f8ff;
  font-weight: 400;
  margin-bottom: 22px;
}

.description {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #b8c9d8;
  font-size: 17px;
  line-height: 1.7;
}

.status-card {
  width: fit-content;
  margin: 0 auto;
  padding: 14px 24px;
  border-radius: 16px;
  background: rgba(0, 127, 177, 0.13);
  border: 1px solid rgba(0, 217, 255, 0.30);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e6fbff;
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.12);
}

.pulse {
  width: 12px;
  height: 12px;
  background: #00eaff;
  border-radius: 50%;
  box-shadow: 0 0 18px #00eaff;
  animation: pulse 1.4s infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 30px 18px;
  }

  .description {
    font-size: 15px;
  }

  .status-card {
    flex-direction: column;
    gap: 8px;
  }
}
