*, *::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;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2.5vw, 36px);
  user-select: none;
  pointer-events: none;
}

.word-row {
  display: flex;
  align-items: center;
  gap: 0;
  pointer-events: all;
}

.char {
  display: inline-block;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  will-change: transform, color;
  cursor: default;
  transition: color 0.5s ease;
}

.gap {
  display: inline-block;
  width: clamp(0.8rem, 2vw, 2rem);
}
