/* Completely hide the Bronze VIP badge everywhere */
.loyaltyBonusHeader {
  display: none !important;
  visibility: hidden !important;
}
/* Telegram blue */
:root { --tg-blue: #0088cc; }

/* Use the same anchor the site already has */
a.bc-i-instagram {
  position: relative;
  display: inline-block;
  width: 28px;               /* tweak to match Telegram size */
  height: 28px;
  vertical-align: middle;
}

/* Blue rounded square background (like Telegram) */
a.bc-i-instagram::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tg-blue);
  border-radius: 4px;        /* adjust to match Telegram corners */
  z-index: 0;
}

/* White Instagram glyph on top (SVG, no masks needed) */
a.bc-i-instagram::before {
  content: "";
  position: absolute;
  inset: 4px;                /* inner padding; adjust for balance */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  background-image: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">\
<path fill="%23ffffff" d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm10 2H7a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zm-5 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6zm4.5-2.75a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5z"/>\
</svg>');
}

/* Make sure any theme filters/masks don’t interfere */
a.bc-i-instagram { 
  background: transparent !important;
  filter: none !important;
}
a.bc-i-instagram::before,
a.bc-i-instagram::after {
  -webkit-mask: none !important;
          mask: none !important;
}









