document.addEventListener("DOMContentLoaded", () => { const btn = document.querySelector('.add-to-playlist'); if (btn) { const badge = document.createElement('span'); badge.textContent = 'Yeni'; badge.style.cssText = ` position: absolute; bottom: -10px; right: -5px; background: #e91e63; color: white; font-size: 12px; font-weight: bold; padding: 2px 6px; border-radius: 10px; box-shadow: 0 0 5px rgba(0,0,0,0.2); `; btn.style.position = 'relative'; btn.appendChild(badge); } });