/* Games 1: Single centered game card */
.games1 {
  width: 100%;
  padding: 80px 40px;
  background-color: #d9d9d9;
}

.games1-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.games1-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.games1-image {
  width: 240px;
  height: auto;
  overflow: hidden;
}

.games1-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.games1-button {
  padding: 12px 48px;
  background-color: #4ade80;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.games1-button:hover {
  background-color: #22c55e;
}

@media (max-width: 768px) {
  .games1 {
    padding: 60px 20px;
  }

  .games1-image {
    width: 200px;
  }

  .games1-button {
    padding: 10px 40px;
    font-size: 16px;
  }
}
