
    (function() {
      var container = document.getElementById('red-ghost-credit');
      if (!container) {
        console.warn('Red Ghost Credit: Container element #red-ghost-credit not found.');
        return;
      }
      
      var styleTag = document.createElement('style');
      styleTag.textContent = `
    @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');
    
    #rg-credit-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Rubik', 'Arial', sans-serif;
    }
    .rg-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      min-height: 80px;
      direction: rtl;
    }
    .rg-link {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none !important;
      transition: opacity 0.3s ease;
      border: none !important;
      background: none !important;
    }
    .rg-link:hover {
      opacity: 0.8;
    }
    .rg-logo {
      height: 28px;
      width: auto;
      max-width: 110px !important;
      display: block;
    }
    .rg-text {
      font-weight: 500;
      font-size: 14px;
      color: #333;
      line-height: 1.4;
      text-align: center;
    }
  `;
      
      container.innerHTML = `
    <div class="rg-wrapper">
      <a href="https://red-ghost.co.il" target="_blank" class="rg-link" aria-label="חברה לבניית אתרים, אפליקציות ומערכות, מיתוג עסקי ועיצוב">
        <img src="https://red-ghost.co.il/black_text_logo.svg" alt="Red Ghost - בניית אתרים" class="rg-logo" />
        <span class="rg-text">חברה לבניית אתרים, אפליקציות ומערכות, מיתוג עסקי ועיצוב</span>
      </a>
    </div>
  `;
      container.appendChild(styleTag);
    })();
  