body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #121212;
    color: white;
}

header {
    padding: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.search-bar {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.search-bar input {
    padding: 10px;
    width: 300px;
    border-radius: 8px;
    border: none;
}

.games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.game-card {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
    background: #2a2a2a;
}

.game-card img {
    width: 100%;
    border-radius: 10px;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 25px;
  width: 100%;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 20px;
  width: 100%;
}

.game-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  min-height: 450px; 
}

