body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #f8fafc 60%);
  color: #0f172a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Animated soft tech glow */
body::before {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  animation: floatGlow 8s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes floatGlow {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}

/* Subtle grid overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
}

.container {
  flex: 1;
  text-align: center;
  padding: 110px 30px 80px;
  max-width: 850px;
  margin: auto;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  border: 1px solid rgba(59, 130, 246, 0.2);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.08),
    0 0 80px rgba(37, 99, 235, 0.1);

  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo img {
  max-width: 260px;
  margin-bottom: 55px;
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.status {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 28px;
  background: linear-gradient(to right, #1d4ed8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 50px;
  color: #2505b4;
}

.contact {
  font-size: 18px;
}

.contact a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 13px;
  color: #64748b;
}
