/* Estilo Geral do MOTD */
body { 
    background-color: #121212; 
    color: #e0e0e0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    padding: 0;
}

/* Cabeçalho com Imagem do Mapa (.png) */
.map-header { 
    position: relative; 
    width: 100%; 
    height: 180px; 
    overflow: hidden;
    border-bottom: 4px solid #ff9900;
    background-color: #000; /* Fundo preto para PNGs transparentes */
}

.map-header img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: brightness(50%); /* Escurece o fundo para o nome do mapa brilhar */
}

.map-name { 
    position: absolute; 
    bottom: 20px; 
    left: 0; 
    width: 100%; 
    text-align: center; 
    font-size: 32px; 
    font-weight: bold; 
    color: #ffffff; 
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
    letter-spacing: 2px;
}

/* Tabela de Ranking */
table { 
    width: 95%; 
    margin: 20px auto; 
    border-collapse: collapse; 
    background: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    overflow: hidden;
}

th { 
    background-color: #222; 
    color: #ff9900; 
    padding: 12px; 
    text-transform: uppercase; 
    font-size: 13px;
    border-bottom: 2px solid #444;
}

td { 
    padding: 8px; 
    text-align: center; 
    border-bottom: 1px solid #333;
    font-size: 15px;
}

/* Avatar Pequeno (aprox. 2cm x 2cm) */
.av { 
    width: 38px; 
    height: 38px; 
    border-radius: 4px; 
    border: 1px solid #555;
    vertical-align: middle;
}

/* Destaque para as Kills e Mortes */
td:nth-child(4) { color: #00ff00; font-weight: bold; } /* Kills */
td:nth-child(5) { color: #ff4444; } /* Mortes */

/* Efeito ao passar o rato (se usado no browser) */
tr:hover { background: rgba(255, 153, 0, 0.05); }
