* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Roboto', sans-serif; background: #0f0f0f; color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header { background: #000; padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 0 15px #00ff00; }

header .container { display: flex; justify-content: space-between; align-items: center; }

h1 { font-size: 28px; }

.green { color: #00ff00; text-shadow: 0 0 10px #00ff00; }

nav ul { list-style: none; display: flex; gap: 30px; }

nav a { color: #fff; text-decoration: none; font-weight: bold; transition: color 0.3s; }

nav a:hover, nav a.active { color: #00ff00; text-shadow: 0 0 5px #00ff00; }

main { margin-top: 80px; padding: 20px 0; }

h2 { text-align: center; margin-bottom: 30px; font-size: 26px; }

#loading { text-align: center; color: #00ff00; font-size: 20px; padding: 40px; }

.hidden { display: none; }

.match { background: #1f1f1f; border: 1px solid #00ff00; border-radius: 8px; margin: 15px 0; padding: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; box-shadow: 0 0 10px rgba(0,255,0,0.3); }

.match-time { font-size: 22px; font-weight: bold; color: #00ff00; min-width: 100px; text-align: center; }

.match-league { color: #aaa; font-size: 14px; text-align: center; width: 100%; }

.match-teams { flex: 1; text-align: center; font-size: 18px; }

.vs { margin: 0 15px; color: #aaa; font-weight: bold; }

.match-link { background: #00ff00; color: #000; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; }

.match-link:hover { background: #00cc00; }

footer { background: #000; padding: 20px 0; text-align: center; color: #666; margin-top: 50px; box-shadow: 0 0 10px #00ff00; }

@media (max-width: 768px) {
    .match { flex-direction: column; text-align: center; }
    .match-time { min-width: auto; }
}