/* styles.css */

body {
  background-color: #1e1e1e;
  font-family: Arial, sans-serif;
  color: #fff;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  margin: 2rem;
}

.card {
  background-color: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  padding: 1rem;
  max-width: 280px;
  margin: 1rem;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card-img {
  width: 100%;
  border-radius: 8px;
}

.card h2 {
  margin: 0.5rem 0;
  font-size: 1.4rem;
  color: #90ee90; /* Minecraft green */
}

.card p {
  font-size: 0.95rem;
  color: #ccc;
}

.card-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.btn {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  flex: 1;
  margin: 0 0.25rem;
  text-align: center;
  transition: background 0.2s ease;
}

.btn-game {
  background-color: #555;
  color: #fff;
}

.btn-game:hover {
  background-color: #777;
}

.btn-desc {
  background-color: #28a745;
  color: white;
}

.btn-desc:hover {
  background-color: #218838;
}
