.usta-btn {
  position: relative;
  display: inline-block;
  background: black;
  padding: 0.2em;
  border-radius: 24px;
  text-decoration: none;
  line-height: 0; /* ikon yüksekliğini kontrol altında tutar */
}

.usta-btn i {
  color: #ecba16;
  font-size: 1.9em;
  display: block;
}

/* BALONCUK: ALTTA, SOLA HİZALI */
.bilgi-mesaji {
  position: absolute;
  top: 130%;       /* ikonun altına */
  right: 0;        /* ikonla hizalı */
  background-color: #333;
  color: #fff;
  text-align: right;
  padding: 12px 18px;
  border-radius: 66px 16px 16px 16px;
  font-size: 0.85em;
  width: 165px;
  white-space: normal;
  line-height: 1.4em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  border: none;
}

/* ✅ Yukarıya bakan küçük üçgen ok */
.bilgi-mesaji::after {
  content: "";
  position: absolute;
  top: -10px; /* kutunun üstüne */
  right: 13px; /* kutunun sağ kenarından 20px içeride */
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #333; /* oku oluşturan renk */
}