body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 40px;
  text-align: center;
}

header h1 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  color: #aaa;
  margin-bottom: 40px;
}

#game-launcher {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.game-card h2 {
  font-size: 1.8em;
  color: #4caf50;
  margin-top: 0;
  margin-bottom: 15px;
}

.game-card p {
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1; /* Pousse le bouton en bas */
  color: #bbb;
}

.play-btn {
  display: inline-block;
  background-color: #4caf50;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.2s;
}

.play-btn:hover {
  background-color: #5cb85c;
}
