.membership-leverage-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.membership-leverage-progress {
  position: relative;
  height: 20px;
  background: #d4d7e6;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.membership-leverage-bar {
  height: 100%;
  background: linear-gradient(to right, #3d99f9, #00ff00);
  border-radius: 30px;
  position: relative;
  animation: animate-positive 2s;
}

.membership-leverage-labels {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 100%;
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

.membership-leverage-percentage {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}

.membership-leverage-circle {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #cbcbcb;
  border: 8px solid #000;
  bottom: -8px;
  right: 0;
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

