/* homeBtn plus statsBtn */
a.homeBtn,
a.statsBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .08);
  color: #2dff00;
  text-decoration: none;
  transition: all .15s ease;
}

a.homeBtn:hover {
  background: rgba(96, 165, 250, .25);
  border-color: rgba(96, 165, 250, .6);
  transform: translateY(-2px);
}

a.statsBtn:hover {
  background: rgba(168, 85, 247, .25);
  border-color: rgba(168, 85, 247, .6);
  transform: translateY(-2px);
}

.homeBtn svg,
.statsBtn svg {
  width: 18px;
  height: 18px;
  display: block;
}