.hn-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.hn-peg {
  position: relative;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}
.hn-peg--sel {
  border-color: rgba(255, 179, 71, 0.8);
  background: rgba(255, 179, 71, 0.08);
}
.hn-rod {
  position: absolute;
  bottom: 8px;
  top: 20px;
  left: 50%;
  width: 6px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 3px;
}
.hn-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
  gap: 3px;
}
.hn-disk {
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #08111f;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
