/* Aplica borda branca ao passar o mouse sobre itens */
.game_frame, .game_thumb, .game_cell, .main_header, .page_title, .content {
transition: border 0.3s ease;
}
.game_frame:hover, .game_thumb:hover, .game_cell:hover, .main_header:hover, .page_title:hover, .content:hover {
border: 2px solid white;
border-radius: 5px; /* Ajuste o raio da borda conforme necessário */
}