
/* Este arquivo foi gerado automaticamente por process_config.php em 2025-05-27 23:36:35 */

/* Importação de fontes */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d0d1e; /* Fundo escuro fixo */
    color: #e0e0e0; /* Cor do texto padrão */
    overflow-x: hidden;
}

/* Efeito de fundo com sobreposição para o brilho neon */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 0, 70, 0.4) 0%, rgba(13, 13, 30, 1) 70%);
    opacity: 0.7;
    z-index: -1;
}

/* Estilo para elementos neon */
.neon-effect {
    text-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 15px #00f, 0 0 20px #00f, 0 0 25px #00f, 0 0 30px #00f, 0 0 35px #00f;
}

.neon-header, .neon-card, .neon-footer {
    border: 1px solid #00ffff50; /* Borda semitransparente */
    box-shadow: 0 0 10px #00ffff, inset 0 0 10px #00ffff80;
}

.neon-text {
    color: #00ffff; /* Ciano neon */
    text-shadow: 0 0 8px #00ffff, 0 0 15px #00ffff;
    font-family: 'Orbitron', sans-serif;
}

.neon-badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.neon-score {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    color: #ff00ff; /* Magenta neon */
    text-shadow: 0 0 8px #ff00ff, 0 0 15px #ff00ff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.neon-channel {
    background-color: #1e0046; /* Fundo sutil para o canal */
    border: 1px solid #80008080; /* Borda roxa neon */
    box-shadow: 0 0 5px #800080;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: #e0e0e0;
}

/* Layout geral */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.neon-header {
    background-color: rgba(13, 13, 30, 0.8);
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    height: 60px;
    margin-right: 15px;
    filter: drop-shadow(0 0 8px #00ffff);
}

.neon-header h1 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    margin: 0;
    font-size: 2.5em;
}

.neon-header p {
    font-size: 1.2em;
}

/* Grid de jogos */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

/* Card do jogo */
.game-card {
    background-color: #1a0a33;
    color: #e0e0e0;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px #00ffff, inset 0 0 15px #00ffff80;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed #00ffff50;
    padding-bottom: 15px;
}

.competition-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ffff;
    box-shadow: 0 0 5px #00ffff;
}

/* Status do jogo */
.game-status.ao-vivo {
    background-color: #ff0000;
    box-shadow: 0 0 8px #ff0000;
}

.game-status.encerrado {
    background-color: #800080;
    box-shadow: 0 0 8px #800080;
}

.game-status.proximo {
    background-color: #008000;
    box-shadow: 0 0 8px #008000;
}

/* Times e placar */
.game-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-weight: bold;
    color: #e0e0e0;
}

.team img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.game-score {
    flex-shrink: 0;
    margin: 0 15px;
}

/* Informações do jogo */
.game-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #00ffff50;
}

.game-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #a0a0a0; /* Cor fixa para data */
}

.game-date i {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.game-channels h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1em;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.channels-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.channel img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    border-radius: 5px;
    filter: brightness(1.2);
}

/* Footer */
.neon-footer {
    background-color: rgba(13, 13, 30, 0.8);
    padding: 15px 0;
    text-align: center;
    font-size: 0.9em;
    color: #a0a0a0;
    border: 1px solid #00ffff50;
    box-shadow: 0 0 10px #00ffff, inset 0 0 10px #00ffff80;
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
    .neon-header h1 {
        font-size: 1.8em;
    }

    .neon-header p {
        font-size: 1em;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-score {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 45px;
    }

    .neon-header h1 {
        font-size: 1.5em;
    }

    .game-card {
        padding: 15px;
    }

    .team img {
        width: 50px;
        height: 50px;
    }
}
    