New badge png

Here is a new badge PNG:

Badge Design:

[Image description: A circular badge with a bright blue background and a white outline. Inside the badge, there is a stylized letter "N" made up of tiny stars, with a subtle gradient effect to give it a sense of depth. The badge has a slight shadow effect to make it stand out.]

Badge PNG:

You can copy and paste the following code to use the badge PNG:

https://i.imgur.com/4j5lq6K.png

Badge Code:

If you want to customize the badge further, you can use the following code:

.badge {
  background-color: #007bff; /* Bright blue */
  border-radius: 50%;
  padding: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff; /* White */
  text-align: center;
}

.badge.star {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff; /* White */
}

.badge.star::before {
  content: "\2605"; /* Star symbol */
  font-size: 12px;
  font-weight: bold;
  color: #ffffff; /* White */
}

You can adjust the styles to fit your needs.