/* Reset & Base */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9fb;
  font-family: 'Inter', sans-serif;
  color: #111;
}

/* Container setup */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Logo styling */
.logo-only {
  width: 260px;   /* adjust if needed */
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

/* Text styling */
.coming-soon {
  font-weight: 500;
  color: #0B78F4;
  margin-top: 0;
  font-size: 1.5rem;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 0.4rem;
}

/* Footer styling */
.footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
}
