(function () {
var BUTTON_ID = 'rv-open-all-albums';
function createButton() {
if (document.getElementById(BUTTON_ID)) return;
var btn = document.createElement('a');
btn.id = BUTTON_ID;
btn.href = '/albums-premium.html';
btn.title = 'Voir tous les albums';
btn.setAttribute('aria-label', 'Voir tous les albums');
btn.innerHTML = 'Albums';
btn.style.position = 'fixed';
btn.style.right = '18px';
btn.style.bottom = '18px';
btn.style.zIndex = '99999';
btn.style.display = 'inline-flex';
btn.style.alignItems = 'center';
btn.style.justifyContent = 'center';
btn.style.minWidth = '64px';
btn.style.height = '64px';
btn.style.padding = '0 18px';
btn.style.borderRadius = '999px';
btn.style.background = 'linear-gradient(180deg, #f5f7ff 0%, #dfe6ff 100%)';
btn.style.color = '#3148b8';
btn.style.fontFamily = 'Arial, Helvetica, sans-serif';
btn.style.fontSize = '14px';
btn.style.fontWeight = '700';
btn.style.textDecoration = 'none';
btn.style.boxShadow = '0 10px 24px rgba(49,72,184,.22), inset 0 1px 0 rgba(255,255,255,.85)';
btn.style.border = '1px solid rgba(49,72,184,.12)';
btn.style.transition = 'transform .18s ease, box-shadow .18s ease';
btn.addEventListener('mouseenter', function () {
btn.style.transform = 'translateY(-2px)';
btn.style.boxShadow = '0 14px 30px rgba(49,72,184,.28), inset 0 1px 0 rgba(255,255,255,.9)';
});
btn.addEventListener('mouseleave', function () {
btn.style.transform = 'translateY(0)';
btn.style.boxShadow = '0 10px 24px rgba(49,72,184,.22), inset 0 1px 0 rgba(255,255,255,.85)';
});
document.body.appendChild(btn);
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', createButton);
} else {
createButton();
}
})();