.robot-head-title {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 60px;
  margin-bottom: -15px;
  margin-right: 10px;
  vertical-align: middle;
}

.robot-head-container {
  width: 80px;
  height: 60px;
  background: #3498db;
  border-radius: 10px;
  position: relative;
  animation: float 3s infinite ease-in-out;
}

.robot-eye-title {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 20px;
}

.robot-eye-title.left {
  left: 15px;
}

.robot-eye-title.right {
  right: 15px;
}

.robot-pupil-title {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  animation: blink 3s infinite;
}

.construction-hat-title {
  width: 85px;
  height: 30px;
  background: #f39c12;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  position: absolute;
  top: -30px;
  left: -2px;
  z-index: 10;
  box-shadow: inset 0 -5px 0 rgba(0,0,0,0.1);
}

.construction-hat-title:before {
  content: "";
  position: absolute;
  width: 85px;
  height: 10px;
  background: #f39c12;
  border-radius: 5px;
  bottom: -5px;
  left: 0;
  box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.construction-hat-title:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 15px;
  background: #e67e22;
  top: -10px;
  left: 37px;
  border-radius: 5px 5px 0 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes blink {
  0%, 48%, 52%, 100% { transform: scale(1); }
  50% { transform: scale(0.1); }
}