.gauge-container {
  position: relative;
  width: 280px;
  height: 140px;
  margin: 40px auto;
}
.gauge-arc {
  width: 100%;
  height: 100%;
  border-radius: 140px 140px 0 0/140px 140px 0 0;
  background: linear-gradient(90deg, #e74c3c 0%, #fbc02d 50%, #2ecc71 100%);
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.gauge-pointer {
  position: absolute;
  width: 6px;
  height: 68%;
  left: 50%;
  bottom: 0;
  transform-origin: bottom center;
  background: #aaa;
  border-radius: 8px;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(.4,2,.5,1);
}
.gauge-value {
  position: absolute;
  left: 0; right: 0;
  bottom: 12px;
  text-align: center;
  font-size: 2.8rem;
  color: #555;
  font-weight: bold;
  z-index: 3;
}
.gauge-label {
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  text-align: center;
  font-size: 1.2rem;
  color: #888;
  z-index: 3;
}
