body.home {
  background: #111;
  color: #fff;
  font-family: sans-serif;
  text-align: center;
  padding: 40px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.game-item {
  background: #222;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
}

.game-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s, filter 0.3s;
}

.game-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: limegreen;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s;
}

.button:hover {
  background: yellowgreen;
  transform: scale(1.05);
}
