/* General body styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff; /* Consistent theme color */
}

/* Header Styles */
header {
  background-color: #005C5C; /* Main brand color */
  color: #fff; /* Consistent text color */
  text-align: center;
  padding: 20px;
}

header p {
  font-size: 1.2em;
  color: #fff; /* Ensure legibility on dark background */
}

/* Navigation Styles */
nav {
  background-color: #005C5C; /* Main brand color */
  color: #fff; /* Consistent text color */
  padding: 10px;
  text-align: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline;
  margin-right: 20px;
}

nav a {
  color: #fff; /* Consistent text color */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

/* Featured Games Section Styles */
section.featured-games {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

.game-card {
  background-color: #f4f4f4; /* Slightly lighter background */
  padding: 20px;
  border-radius: 8px;
  margin: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.game-card h3 {
  margin-top: 10px;
  color: #005C5C; /* Main brand color */
}

.game-card p {
  font-size: 0.9em;
  color: #555;
}

.game-card a {
  display: block;
  margin-top: 10px;
  background-color: #005C5C; /* Main brand color */
  color: #fff; /* Consistent text color */
  text-decoration: none;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.game-card a:hover {
  background-color: #333;
}

/* Footer Styles */
footer {
  background-color: #333; /* Darker footer color */
  color: #fff; /* Consistent text color */
  padding: 10px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Team Member Styles */
.team-member {
  background-color: #D3D3D3;
  margin: 10px;
  padding: 20px;
}

/* Additional notes:

- I've made minor adjustments to the color scheme to provide better contrast and legibility.
- I've removed the `position: fixed` rule from the `.game-card` class, as it appeared to be a potential bug.
- I've ensured consistency in using the main brand color (#005C5C) and a complementary white (#fff) for text and important elements.
- I've maintained all essential CSS properties and addressed potential usability issues.

- I hope this is a helpful and informative response! */
