/* Banner image styling */
header img {
  max-width: 100%;       /* makes banner fit the page width */
  height: auto;          /* keeps proportions */
  border-radius: 10px;   /* rounded corners */
  margin: 20px 0;        /* space above and below */
}

/* Game card images */
.game-card img {
  max-width: 150px;      /* keeps logos small and neat */
  display: block;        /* centers them */
  margin: 0 auto 10px;   /* auto centers + space below */
  border-radius: 8px;    /* rounded corners */
  border: 2px solid #00ffcc; /* neon border */
}



