/* Reset básico */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #ffffff;
  color: #2c3e50;
  margin: 0;
  padding: 0;
}

/* Cabeçalho principal */
header {
  background: linear-gradient(90deg, #e91e63, #9c27b0);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  font-size: 2.5em;
  margin: 0;
}

header p {
  font-style: italic;
  margin-top: 10px;
}

/* Conteúdo principal */
main {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Seções */
section {
  margin-bottom: 50px;
}

h2 {
  color: #9c27b0;
  font-size: 1.8em;
  margin-bottom: 10px;
  border-bottom: 2px solid #e91e63;
  padding-bottom: 5px;
}

/* Lista de jogos */
ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "🎮";
  margin-right: 6px;
}

/* Links */
a {
  color: #e91e63;
  text-decoration: none;
}

/* Botão estilizado */
a.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background-color: #9c27b0;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

/* Imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #cccccc;
}

/* Rodapé */
footer {
  background-color: #e91e63;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Seção de destaque para projeto */
section.destaque {
  background-color: #f5f5fc;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ddd;
}

