
body {
  font-family: 'Quicksand', sans-serif;
  background: #f0f3f5;
  color: #333;
  text-align: center;
  padding: 20px;
}
h1 {
  color: #6e74b6;
}
.menu-jogos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.btn-jogo {
  background-color: #6e74b6;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.3s;
}
.btn-jogo:hover {
  background-color: #5a5f9e;
}
.voltar-seta {
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: rgba(103, 182, 148, 0.6);
  color: white;
  font-size: 1.5em;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  z-index: 1000;
}
.voltar-seta:hover {
  background-color: rgba(103, 182, 148, 0.9);
}
