@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Noto+Sans+KR:wght@300;400&display=swap');

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #eef3fa;
  font-family: 'Space Mono', monospace;
}

canvas { display: block; filter: blur(2px); }

#blur-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
}

#landing {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  background: #eef3fa;
}

#landing .title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #122346;
}

#landing .prompt {
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #5f87b4;
  text-transform: uppercase;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
