
/* Worn Steel Theme — Gritty & Versatile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #1f1f1f;
  color: #e0e0e0;
}
header {
  background-color: #121212;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}
nav a {
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.3s;
}
nav a:hover {
  color: #f39c12;
}
.hero {
  background: url('../images/background-1.jpg') no-repeat center center/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 5px black;
  font-size: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  padding: 0.5rem 1rem;
  text-align: center;
}
.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}
.game-card {
  background-color: #2b2b2b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.game-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #f39c12;
}
.game-card p {
  font-size: 0.95rem;
  color: #ccc;
}
.game-card img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
  object-fit: cover;
}
footer {
  background-color: #121212;
  color: #888;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    font-size: 1.5rem;
    height: auto;
    padding: 1.5rem 1rem;
  }
  .content {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .game-card {
    padding: 1rem;
  }
  .game-card img {
    margin-top: 0.5rem;
  }
}

/* Custom Link Styling for Downloads Section */
#downloads a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
#downloads a:visited {
  color: #72b300;
}
#downloads a:hover,
#downloads a:focus {
  color: #f39c12;
  text-decoration: underline;
}

/* Remove link styling from game-card anchor wrappers */
.game-card:link,
.game-card:visited,
.game-card:hover,
.game-card:focus,
.game-card:active {
  color: inherit;
  text-decoration: none;
}

