font-size: 0.9rem;
margin-bottom: 10px;
}
#chatbot input {
width: 100%;
padding: 6px;
border: none;
border-radius: 5px;
}
#chatbot-toggle {
position: fixed;
bottom: 30px;
right: 20px;
background: #00ffcc;
border: none;
padding: 10px 14px;
border-radius: 6px;
font-weight: bold;
cursor: pointer;
z-index: 1000;
}
About
We Are Athletic brings you live updates, schedules, and a place to connect with agents. Covering every major sport globally.
Soccer
- Al Nassr vs Al Hilal – Today, 8:00 PM
- Real Madrid vs Inter – June 18, 7:00 PM
- Chelsea vs Man City – June 21, 6:30 PM
Basketball
- NBA Draft – June 27
- Toronto Raptors vs Heat – June 19, 9:00 PM
Tennis
- Wimbledon Qualifiers – June 24
- French Open Recap – June 17
UFC
- UFC 306: Adesanya vs Dricus – Today
- Fight Night – June 22
Baseball
- Yankees vs Red Sox – June 18
- Blue Jays vs Dodgers – June 20
Hockey
- Stanley Cup Finals – Ongoing
Cricket
- India vs Pakistan – June 18
- Australia vs England – June 19
Formula 1
- Canadian Grand Prix – June 23
eSports
- Valorant Masters – June 20
- FIFA 24 Finals – June 24
Olympics
- Paris 2024 Starts – July 26
`;
document.head.appendChild(style);
toggleBtn.addEventListener('click', () => {
const isLight = document.body.classList.toggle('light-mode');
localStorage.setItem('theme', isLight ? 'light' : 'dark');
});