body {
  background-color: #0f0f12; /* Darker, "space" background */
  color: #d1d1d1;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  margin-bottom: 50px;
}

h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* The Grid Layout */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}

/* The Game Cards */
.game-card {
  background: #1e1e24;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px); /* Pops up slightly */
  border-color: #bb86fc;       /* Purple border glow */
  box-shadow: 0 10px 20px rgba(187, 134, 252, 0.1);
}

.game-card h3 {
  margin: 0 0 10px 0;
  color: #bb86fc;
}

.game-card p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

/* Special color for the About card */
.about:hover {
  border-color: #03dac6;
}
