Contact Us

Let's be in touch.

Have any questions or suggestions? Feel free to write to us.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

We are United.

Our Sponsorships
Company LogoCompany LogoCompany LogoCompany LogoCompany LogoCompany LogoCompany LogoCompany LogoCompany LogoCompany Logo

Subscribe to our newsletter to be in touch with latest news.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// 搜尋功能 document.getElementById('searchInput').addEventListener('input', function () { const filter = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const name = item.querySelector('.Name').innerText.toLowerCase(); if (name.includes(filter)) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); }); // 篩選功能 document.getElementById('teamFilter').addEventListener('change', function () { const selectedTeam = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const team = item.querySelector('Team').innerText.toLowerCase(); if (selectedTeam === 'all' || team === selectedTeam) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); });