(function() { // Video alanındaki boşlukları kaldır const style = document.createElement('style'); style.innerHTML = ` video { display: block !important; width: 100% !important; height: auto !important; object-fit: cover !important; } body > div:first-child { margin: 0 !important; padding: 0 !important; height: auto !important; background: transparent !important; } html, body { margin: 0 !important; padding: 0 !important; } `; document.head.appendChild(style); // Ekstra boş div varsa kaldır window.addEventListener('DOMContentLoaded', function() { const emptyDivs = document.querySelectorAll('body > div'); emptyDivs.forEach((div) => { if (div.clientHeight < 20 && div.innerText.trim() === "") { div.remove(); } }); }); })();