.container-home {
  display: block !important;
}

#profile {
  opacity: 0;
  transition: opacity 350ms ease;
}

#profile.loaded {
  opacity: 1;
}

.avatar {
  width: 80px; 
  height: 80px;
  border-radius: 50%;
  display: block;
  position: relative;
}

.avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 0.2rem;
}

.avatar-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  pointer-events: none;
}

.name {
  font-weight: bold;
  letter-spacing: -0.02em;
  color: #000;
  line-height: 1.2;
  text-transform: none;
}

.handle {
  font-size: 15px;
  color: #444;
  letter-spacing: -0.01em;
  margin-top: -0.2rem;
  text-transform: none;
  cursor: pointer;
  transition: color 200ms ease;
}

.handle:hover {
  color: #000;
}

.meta {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-row {
  font-size: 15px;
  color: #444;
  letter-spacing: -0.01em;
  text-transform: none;
}

.meta-row span {
  color: #000; 
  font-weight: bold;
}

.copyable {
  cursor: pointer;
  transition: color 200ms ease;
}

.copyable:hover {
  color: rgb(190, 190, 190);
}

.loading-text {
  color: #000;
  letter-spacing: -0.01em;
}