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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 20%, #1660e8 0%, #0b3fae 45%, #051e57 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.coming-soon {
  position: relative;
  text-align: center;
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: rise 0.7s ease-out;
}

.logo {
  width: 220px;
  max-width: 70vw;
  height: auto;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: float 4s ease-in-out infinite;
}

.tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.status::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23B3E6;
  box-shadow: 0 0 0 0 rgba(35, 179, 230, 0.7);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(35, 179, 230, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(35, 179, 230, 0); }
  100% { box-shadow: 0 0 0 0 rgba(35, 179, 230, 0); }
}

.contact {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-btn--facebook {
  background: #1877F2;
  color: #fff;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.contact-btn--email {
  background: rgba(255, 255, 255, 0.9);
  color: #0b3fae;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

.contact-btn--facebook:hover {
  background: #0f6ae0;
}

.contact-btn--email:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.25);
}

@media (max-width: 480px) {
  .coming-soon {
    padding: 2.5rem 1.5rem;
  }

  .status {
    font-size: 1.3rem;
  }

  .contact {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-btn {
    justify-content: center;
  }
}
