/* Paleta de Cores */
:root {
    --background-dark: #121212;
    --text-light: #f0f0f0;
    --neon-blue: #00FFFF;
    --neon-green: #00FF00;
    --neon-magenta: #FF00FF;
  }
  
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.app {
    padding: 20px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--neon-blue);
    padding-bottom: 15px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: var(--neon-blue);
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--text-light);
    text-shadow: 0 0 5px var(--neon-blue);
}

.menu li.active a {
    color: var(--text-light);
    border-bottom: 2px solid var(--neon-magenta);
    padding-bottom: 5px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
    margin-bottom: 30px;
}

#jogos-do-dia-lista {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 20px;
}

.game-item {
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--neon-blue), 0 0 20px rgba(0, 255, 255, 0.6);
}

.game-info {
    text-align: center;
}

.game-tournament {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--neon-magenta);
    margin-bottom: 5px;
}

.game-modality {
    font-style: italic;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.game-teams {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--text-light);
    margin: 15px 0;
}

.game-details {
    font-size: 0.9em;
    color: #aaa;
}