html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0b1e4f;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo {
  max-width: 320px;
  width: 80%;
  margin-bottom: 2rem;
}

.status {
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Subtle police-style scanner sweep */
.scanner {
  position: fixed;
  top: -30%;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    rgba(77, 122, 226, 0) 0%,
    rgba(77, 122, 226, 0.05) 50%,
    rgba(77, 122, 226, 0) 100%
  );
  animation: scan 4s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { top: -30%; }
  100% { top: 100%; }
}

.coming-soon {
  margin-top: 0.75rem;
  margin-left: 0.75em;
  margin-right: 0.75em;
  max-width: 540px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}
