/* Configuração Geral do Fundo */
body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: Arial, Helvetica, sans-serif;
    margin: 20px;
    padding: 0;
}

/* Título do Mapa */
.titulo-mapa {
    text-align: center;
    color: #ff9100;
    font-size: 24px;
    text-transform: uppercase;
    border-bottom: 2px solid #ff9100;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Estrutura da Tabela */
.tabela-ranking {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border: 1px solid #333;
}

/* Cabeçalho da Tabela */
.cabecalho {
    background-color: #262626;
    color: #ff9100;
    text-transform: uppercase;
    font-size: 13px;
}

.cabecalho th {
    padding: 12px;
    border-bottom: 2px solid #333;
}

/* Linhas dos Jogadores */
.linha-jogador {
    text-align: center;
    font-size: 14px;
    transition: background 0.3s;
}

.linha-jogador td {
    padding: 10px;
    border-bottom: 1px solid #262626;
}

/* Cores Alternadas para facilitar a leitura */
.linha-jogador:nth-child(even) {
    background-color: #141414;
}

/* Destaque para a Patente */
.rank-nome {
    font-weight: bold;
    color: #00ffcc;
    text-shadow: 1px 1px #000;
}

/* Destaque para os Frags (K) */
.linha-jogador td:nth-child(5) {
    color: #00ff00;
    font-weight: bold;
}

/* Destaque para as Mortes (D) */
.linha-jogador td:nth-child(6) {
    color: #ff3333;
}

/* Estilo para quando passar o rato (se o motor suportar) */
.linha-jogador:hover {
    background-color: #333;
}

/* Efeito Dourado para o 1º Lugar */
.primeiro-lugar {
    background-color: #4d3d00 !important; /* Fundo levemente dourado/escuro */
    color: #fffb00 !important; /* Texto amarelo brilhante */
    font-weight: bold;
}

.primeiro-lugar td {
    border-bottom: 2px solid #ffcc00 !important;
}

/* Estilo para Bots */
.nome-bot {
    color: #888888; /* Cinzento para diferenciar de humanos */
    font-style: italic;
}

.nome-bot small {
    font-size: 10px;
    background: #333;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
    color: #bbb;
}
