.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.game-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.game-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.game-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.game-buttons {
    display: flex;
    gap: 10px;
}

.game-button {
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.game-button:hover {
    background: #0056b3;
    color: white;
}
