(function() {
// Varsa eski test stilini kaldır (tekrar tekrar test edebilmek için)
document.getElementById('hemenAlHighlightStyle')?.remove();
const style = document.createElement('style');
style.id = 'hemenAlHighlightStyle';
style.textContent = `
#btnHemenAl {
background: linear-gradient(135deg, #d21e42, #7a0f26) !important;
color: #ffffff !important;
border: none !important;
font-weight: 700 !important;
font-size: 16px !important;
letter-spacing: 0.4px !important;
text-transform: uppercase;
box-shadow: 0 4px 14px rgba(122, 15, 38, 0.55) !important;
border-radius: 4px !important;
transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}
#btnHemenAl:hover {
transform: translateY(-2px) scale(1.02);
box-shadow: 0 6px 20px rgba(122, 15, 38, 0.7) !important;
cursor: pointer;
}
`;
document.head.appendChild(style);
})();