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

body, html {
  height: 100%;
  font-family: 'Urbanist', sans-serif;
  color: #0d1b2a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
}

.card {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1.2s ease;
}

.logo {
  font-size: 3rem;
  color: #1565c0;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #333;
}

.coming-soon {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.note {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.contact {
  font-size: 0.95rem;
  color: #555;
}

.contact a {
  color: #1565c0;
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

.footer {
  font-size: 0.8rem;
  color: #555;
  margin-top: 2rem;
}

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