*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #fafafa;
  overflow: hidden;
}

#container {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.word {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  user-select: none;
  will-change: transform;
  text-shadow: 0 0 18px currentColor, 0 0 40px currentColor;
  pointer-events: auto;
  white-space: nowrap;
  line-height: 1;
}

.word:hover {
  opacity: 1 !important;
  text-shadow: 0 0 24px currentColor, 0 0 60px currentColor, 0 0 100px currentColor;
}

#hint {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 2s ease;
}
